mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
34 lines
927 B
JavaScript
34 lines
927 B
JavaScript
Package.describe({
|
|
name: "modules-test-plugin",
|
|
version: "0.0.1",
|
|
summary: "",
|
|
// By default, Meteor will default to using README.md for documentation.
|
|
// To avoid submitting documentation, set this field to null.
|
|
documentation: null
|
|
});
|
|
|
|
Package.registerBuildPlugin({
|
|
name: "compile-arson",
|
|
use: ["ecmascript"],
|
|
sources: ["plugin.js"],
|
|
npmDependencies: {
|
|
// TODO Figure out what to do about the duplication between this list
|
|
// and the Npm.depends list below.
|
|
"babel-plugin-transform-class-properties": "6.9.0",
|
|
"babel-plugin-transform-strict-mode": "6.8.0"
|
|
}
|
|
});
|
|
|
|
Npm.depends({
|
|
arson: "0.2.3",
|
|
"babel-plugin-transform-class-properties": "6.9.0",
|
|
"babel-plugin-transform-strict-mode": "6.8.0",
|
|
"vue-template-compiler": "2.5.16"
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
api.use("ecmascript");
|
|
api.use("isobuild:compiler-plugin@1.0.0")
|
|
api.mainModule("modules-test-plugin.js");
|
|
});
|