@@ -12,9 +12,15 @@ aliases:
1212 - &artifact_babel
1313 path : ~/babel/packages/babel-standalone/babel.js
1414
15+ - &artifact_babel_sourcemap
16+ path : ~/babel/packages/babel-standalone/babel.js.map
17+
1518 - &artifact_babel_min
1619 path : ~/babel/packages/babel-standalone/babel.min.js
1720
21+ - &artifact_babel_min_sourcemap
22+ path : ~/babel/packages/babel-standalone/babel.min.js.map
23+
1824 - &test262_workdir
1925 working_directory : ~/babel/babel-test262-runner
2026
@@ -41,12 +47,14 @@ jobs:
4147 - restore_cache : *restore-yarn-cache
4248 # Builds babel-standalone with the regular Babel config
4349 # test-ci-coverage doesn't test babel-standalone, as trying to gather coverage
44- - run : IS_PUBLISH=true make -j build-standalone-ci
50+ - run : NODE_ENV=production IS_PUBLISH=true make -j build-standalone-ci
4551 # data for a JS file that's several megabytes large is bound to fail. Here,
4652 # we just run the babel-standalone test separately.
4753 - run : yarn jest "\-standalone/test"
4854 - store_artifacts : *artifact_babel
55+ - store_artifacts : *artifact_babel_sourcemap
4956 - store_artifacts : *artifact_babel_min
57+ - store_artifacts : *artifact_babel_min_sourcemap
5058 - save_cache : *save-yarn-cache
5159
5260 test262 :
0 commit comments