Skip to content

Instantly share code, notes, and snippets.

@illusionfield
Created March 28, 2015 13:45
Show Gist options
  • Save illusionfield/c16f349aa2abb0f3b4d8 to your computer and use it in GitHub Desktop.
Save illusionfield/c16f349aa2abb0f3b4d8 to your computer and use it in GitHub Desktop.
particle4dev:sass@2.0.1_1 win
Package.describe({
summary: "SASS for meteor",
version: "2.0.1_1",
name: "particle4dev:sass",
git: "https://github.com/particle4dev/meteor-sass.git"
});
Package.onUse(function (api) {
api.versionsFrom('METEOR@1.1-rc.0');
});
// meteor test-packages ./
Package._transitional_registerBuildPlugin({
name: "compilesassplugin",
use: [],
sources: [
'plugin/compile.sass.plugin.js'
],
npmDependencies: {"node-sass": "2.0.1"}
});
Package.on_test(function (api) {
api.use(['test-helpers', 'tinytest', 'jquery', 'templating', 'blaze', 'ui', "particle4dev:sass"]);
api.add_files([
'test/oscreenDiv.js',
'test/presence/template.html',
'test/presence/style.scss',
'test/presence/test.js',
'test/extend/template.html',
'test/extend/style.scss',
'test/extend/test.js',
'test/operators/template.html',
'test/operators/style.scss',
'test/operators/test.js',
'test/functions/template.html',
'test/functions/style.scss',
'test/functions/test.js',
'test/mixin/template.html',
'test/mixin/style.scss',
'test/mixin/test.js',
'test/import/template.html',
'test/import/style.scss',
'test/import/test.js',
'test/sass/template.html',
'test/sass/style.sass',
'test/sass/test.js',
], 'client');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment