mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
24 lines
516 B
JavaScript
24 lines
516 B
JavaScript
Package.describe({
|
|
summary: 'Expressive, dynamic, robust CSS',
|
|
version: "1.0.5"
|
|
});
|
|
|
|
Package._transitional_registerBuildPlugin({
|
|
name: "compileStylus",
|
|
use: [],
|
|
sources: [
|
|
'plugin/compile-stylus.js'
|
|
],
|
|
npmDependencies: { stylus: "0.46.3", nib: "1.0.2" }
|
|
});
|
|
|
|
Package.on_test(function (api) {
|
|
api.use(['tinytest', 'stylus', 'test-helpers', 'templating']);
|
|
api.add_files([
|
|
'stylus_tests.html',
|
|
'stylus_tests.styl',
|
|
'stylus_tests.import.styl',
|
|
'stylus_tests.js'
|
|
],'client');
|
|
});
|