Created
March 28, 2015 13:45
-
-
Save illusionfield/c16f349aa2abb0f3b4d8 to your computer and use it in GitHub Desktop.
particle4dev:[email protected]_1 win
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
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('[email protected]'); | |
}); | |
// 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