update the npm and atmosphere package dependencies

This commit is contained in:
Brian Mulhall
2020-04-04 13:59:10 -05:00
parent c53844b3d4
commit b52fa165ff
2 changed files with 4 additions and 5 deletions

View File

@@ -22,9 +22,9 @@
"integrity": "sha512-efyLRJDr68D9hBBNIPWFjhpFzURh+KJykQwvMyW5UiZzYwoF6l4YMMDIJJEyFWxWCqfyxLzz6tSfUFR+kXXsVQ=="
},
"terser": {
"version": "4.6.6",
"resolved": "https://registry.npmjs.org/terser/-/terser-4.6.6.tgz",
"integrity": "sha512-4lYPyeNmstjIIESr/ysHg2vUPRGf2tzF9z2yYwnowXVuVzLEamPN1Gfrz7f8I9uEPuHcbFlW4PLIAsJoxXyJ1g=="
"version": "4.6.10",
"resolved": "https://registry.npmjs.org/terser/-/terser-4.6.10.tgz",
"integrity": "sha512-qbF/3UOo11Hggsbsqm2hPa6+L4w7bkr+09FNseEe8xrcVD3APGLFqE+Oz1ZKAxjYnFsj80rLOfgAtJ0LNJjtTA=="
}
}
}

View File

@@ -4,11 +4,10 @@ Package.describe({
});
Npm.depends({
terser: "4.6.6"
terser: "4.6.10"
});
Package.onUse(function (api) {
api.use('babel-compiler');
api.export(['meteorJsMinify']);
api.addFiles(['minifier.js'], 'server');
});