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

remove fix format from commands, add fix to build, fix test-functiona… #444

Merged
Merged
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
24 changes: 12 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"private": true,
"scripts": {
"_comment_SDK_install_build_run_commands": "The following are public commands to clean, install, build, and run the SDK",
"build:dev": "npm run _internal-check-node-version && run-p -l lint _internal-build-dev-only",
"build:dev": "npm run _internal-check-node-version && run-p -l fix _internal-build-dev-only",
"build:dev:ci": "npm run _internal-check-node-version && npm run clean && npm run _internal-install-sdk && npm run build:dev",
"build:prod": "npm run _internal-check-node-version && run-p -l lint _internal-build-prod-only",
"build:prod": "npm run _internal-check-node-version && run-p -l fix _internal-build-prod-only",
"build:prod:ci": "npm run _internal-check-node-version && npm run clean && npm run _internal-install-sdk && npm run build:prod",
"start-dev": "webpack serve",
"start-dev-https": "webpack serve --https",
Expand All @@ -21,21 +21,21 @@
"fix:format": "prettier --log-level warn -w .",
"_comment_DXCB_commands": "The following are public commands to run the integrated DX Component Builder",
"authenticate": "dx-component-builder-sdk authenticate",
"buildAllComponents": "npm run fix:format && dx-component-builder-sdk buildAllComponents",
"buildComponent": "npm run fix:format && dx-component-builder-sdk buildComponent",
"buildAllComponents": "dx-component-builder-sdk buildAllComponents",
"buildComponent": "dx-component-builder-sdk buildComponent",
"clearMap": "dx-component-builder-sdk clearMap",
"create": "dx-component-builder-sdk create && npm run fix:format",
"createAll": "dx-component-builder-sdk createAll && npm run fix:format",
"delete": "dx-component-builder-sdk delete && npm run fix:format",
"create": "dx-component-builder-sdk create",
"createAll": "dx-component-builder-sdk createAll",
"delete": "dx-component-builder-sdk delete",
"deleteAll": "dx-component-builder-sdk deleteAll",
"list": "dx-component-builder-sdk list",
"mapAll": "dx-component-builder-sdk mapAll && npm run fix:format",
"mapAll": "dx-component-builder-sdk mapAll",
"override": "dx-component-builder-sdk override",
"overrideAll": "dx-component-builder-sdk overrideAll",
"publish": "npm run fix:format && dx-component-builder-sdk publish && npm run fix:format",
"publishAll": "npm run fix:format && dx-component-builder-sdk publishAll && npm run fix:format",
"publish": "dx-component-builder-sdk publish",
"publishAll": "dx-component-builder-sdk publishAll",
"rename": "dx-component-builder-sdk rename",
"scanAndFix": "dx-component-builder-sdk scanAndFix && npm run fix:format",
"scanAndFix": "dx-component-builder-sdk scanAndFix",
"startStorybook": "storybook dev --port 6040",
"_comment_SDK_public_SDK_test_commands": "The following are public commands used for testing the SDK",
"test:functional": "jest --runInBand tests/functional/dxcb --detectOpenHandles --coverage",
Expand All @@ -48,7 +48,7 @@
"_internal-check-node-version": "node scripts/check-node-version",
"_internal-copy-index": "shx cp dist/index.html dist/simpleportal.html && shx cp dist/index.html dist/portal.html && shx cp dist/index.html dist/fullportal.html && shx cp dist/index.html dist/embedded.html",
"_internal-install-sdk": "echo \"installing...\" && npm install --loglevel notice",
"_internal-test-functional": "npm run test:functional:local --prefix node_modules/@pega/dx-component-builder-sdk"
"_internal-test-functional": "npm run test:functional:local:sdk-r --prefix node_modules/@pega/dx-component-builder-sdk"
},
"dependencies": {
"@date-io/dayjs": "^1.3.13",
Expand Down
Loading