Skip to content

Commit

Permalink
working on intg build all script
Browse files Browse the repository at this point in the history
  • Loading branch information
Moumita Mandal committed Aug 26, 2021
1 parent 9e00d20 commit a3c71f1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
5 changes: 5 additions & 0 deletions integrationBuildScript.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { configToIntNames } from "./config_to_integration_names";

Object.keys(configToIntNames).forEach((key) => {
console.log(configToIntNames[key]);
});
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@
"size": "npm run size-build && size-limit",
"changelog": "auto-changelog -p -t keepachangelog -u true -l false --sort-commits date-desc ",
"buildDevIntegration": "NODE_ENV=false uglify=false INTG_NAME=AdobeAnalytics rollup --config rollup.intgConfig.js",
"buildProdIntegration": "NODE_ENV=false ENV=prod uglify=true INTG_NAME=Keen rollup --config rollup.intgConfig.js"
"buildDevIntegrationCLI": "NODE_ENV=false uglify=false INTG_NAME=$npm_config_intg rollup --config rollup.intgConfig.js",
"buildProdIntegration": "NODE_ENV=false ENV=prod uglify=true INTG_NAME=AdobeAnalytics rollup --config rollup.intgConfig.js",
"buildProdIntegrationCLI": "NODE_ENV=false ENV=prod uglify=true INTG_NAME=$npm_config_intg rollup --config rollup.intgConfig.js"
},
"pre-commit": [
"prodTest",
Expand Down

0 comments on commit a3c71f1

Please sign in to comment.