Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change module type to UMD to support webpack at al #141

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Change module type to UMD to support webpack at al
pke authored Mar 17, 2017

Verified

This commit was signed with the committer’s verified signature.
BeiyanYunyi 北雁云依
commit d7753e3966acb994d9b26e64cbea2e67648178c1
4 changes: 2 additions & 2 deletions Gruntfile.js
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@ module.exports = function (grunt) {
// outDir:'build',
options: {
target: 'es5',
module: 'commonjs',
module: 'umd',
sourceMap: true,
additionalFlags: "--declaration"
}
@@ -80,4 +80,4 @@ module.exports = function (grunt) {
grunt.registerTask('meteor-test', ['exec:meteor-init', 'exec:meteor-test', 'exec:meteor-cleanup']);
grunt.registerTask('meteor-publish', ['exec:meteor-init', 'exec:meteor-publish', 'exec:meteor-cleanup']);
grunt.registerTask('meteor', ['exec:meteor-init', 'exec:meteor-test', 'exec:meteor-publish', 'exec:meteor-cleanup']);
};
};