File tree Expand file tree Collapse file tree 3 files changed +20
-1
lines changed
Expand file tree Collapse file tree 3 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,8 @@ bower_components
3232# Compiled binary addons (http://nodejs.org/api/addons.html)
3333build /Release
3434
35+ dist
36+
3537# Dependency directories
3638node_modules /
3739jspm_packages /
Original file line number Diff line number Diff line change 1+ let presets = [ "babel-preset-atomic" ]
2+
3+ let plugins = [ ]
4+
5+ module . exports = {
6+ presets : presets ,
7+ plugins : plugins ,
8+ exclude : [ "node_modules/**" , "lib/debugger/VendorLib/**" ] ,
9+ sourceMap : "inline" ,
10+ }
Original file line number Diff line number Diff line change 11{
22 "name" : " ide-python" ,
3- "main" : " ./lib /main" ,
3+ "main" : " ./dist /main" ,
44 "version" : " 1.5.2" ,
55 "description" : " Python language support for Atom-IDE" ,
66 "keywords" : [
2727 "engines" : {
2828 "atom" : " >=1.21.0 <2.0.0"
2929 },
30+ "scripts" : {
31+ "clean" : " shx rm -rf dist" ,
32+ "babel" : " npm run clean && shx cp -r lib dist && cross-env NODE_ENV=production cross-env BABEL_KEEP_MODULES=false babel dist --out-dir dist" ,
33+ "copy" : " shx cp -r lib/debugger/VendorLib dist/debugger" ,
34+ "build-commit" : " build-commit -o dist" ,
35+ "prepare" : " npm run babel"
36+ },
3037 "dependencies" : {
3138 "atom-languageclient" : " 0.9.9" ,
3239 "arch" : " 2.1.0" ,
You can’t perform that action at this time.
0 commit comments