This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2020-05-01T18:22:00.884Z","extensionVersion":"v3.4.3"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.4.14) | |
// Compass (v1.0.3) | |
// ---- | |
$line-heights: 1, 1.1, 1.2, 1.3, 1.4, 1.6, 1.8, 2.0; | |
@function str-replace($string, $search, $replace: '') { | |
$index: str-index($string, $search); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.4.14) | |
// Compass (v1.0.3) | |
// ---- | |
$properties: (long-name: 'margin', short-name: 'm'), (long-name: 'padding', short-name: 'p'); | |
$directions: (long-name: 'Top', short-name: 't'), (long-name: 'Right', short-name: 'r'), (long-name:'Bottom', short-name: 'b'), (long-name:'Left', short-name:'l'); | |
$unit-base: 4px; | |
@each $property in $properties { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.4.14) | |
// Compass (v1.0.3) | |
// ---- | |
$properties: (long-name: 'margin', short-name: 'm'), (long-name: 'padding', short-name: 'p'); | |
$unit-base: 4px; | |
$directions: (long-name: 'Top', short-name: 't'), (long-name: 'Right', short-name: 'r'), (long-name:'Bottom', short-name: 'b'), (long-name:'Left', short-name:'l'); | |
@each $property in $properties { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.4.14) | |
// Compass (v1.0.3) | |
// ---- | |
$properties: (long-name: 'margin', short-name: 'm'), (long-name: 'padding', short-name: 'p'); | |
$unit-base: 4px; | |
$directions: (long-name: 'Top', short-name: 't'), (long-name: 'Right', short-name: 'r'), (long-name:'Bottom', short-name: 'b'), (long-name:'Left', short-name:'l'); | |
@each $property in $properties { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Demo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var createGame = require('voxel-engine'); | |
var game = createGame(); | |
var container = document.body; | |
game.appendTo(container); | |
var createPlayer = require('voxel-player')(game); | |
var dude = createPlayer('dude.png'); | |
dude.possess(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var assert = require('assert'); | |
var httpHelper = require('./helpers/httpHelper.js'); | |
var appHelper = require('./helpers/appHelper'); | |
describe('View routes', function() { | |
var appName = 'testApp'; | |
before(function(done) { | |
appHelper.build(function(err) { | |
if(err) return done(err); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var fs = require('fs-extra'); | |
var wrench = require('wrench'); | |
var exec = require('child_process').exec; | |
var path = require('path'); | |
var sailsBin = path.resolve('./bin/sails.js'); | |
/** | |
* Uses the Sails binary to create a namespaced test app | |
* If no appName is given use 'testApp' | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Desired CoffeeScript compilation Error: | |
>> SyntaxError: unmatched } | |
>> In file: main.coffee | |
>> On line: 15 | |
>> foo = } bar | |
>> ^ | |
The isssue is that grunt.log.error trims whitespace so that | |
grunt.log.error(' ^') |