Skip to content

Commit

Permalink
remove build:ci scripts
Browse files Browse the repository at this point in the history
They were created to have a silent build; however, CI builds are now
silent by virtue of running in a child process without access to
printing.
  • Loading branch information
warm-coolguy committed Feb 12, 2024
1 parent 9786495 commit ceca8bc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 9 deletions.
5 changes: 2 additions & 3 deletions packages/clients/afm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,8 @@
"API.md"
],
"scripts": {
"postversion": "npm run build:ci",
"build": "rimraf dist && vite build && cd ../../.. && npm run docs:afm",
"build:ci": "rimraf dist && vite build -l silent && cd ../../.. && npm run docs:afm"
"postversion": "npm run build",
"build": "rimraf dist && vite build && cd ../../.. && npm run docs:afm"
},
"devDependencies": {
"@polar/core": "^1.0.0",
Expand Down
5 changes: 2 additions & 3 deletions packages/clients/dish/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@
"CHANGELOG.md"
],
"scripts": {
"postversion": "npm run build:ci",
"build": "rimraf dist && vite build && bash ./scripts/injectFlag.sh",
"build:ci": "rimraf dist && vite build -l silent && bash ./scripts/injectFlag.sh"
"postversion": "npm run build",
"build": "rimraf dist && vite build && bash ./scripts/injectFlag.sh"
},
"devDependencies": {
"@masterportal/masterportalapi": "2.8.0",
Expand Down
5 changes: 2 additions & 3 deletions packages/clients/meldemichel/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,8 @@
"API.md"
],
"scripts": {
"postversion": "npm run build:ci",
"build": "rimraf dist && vite build && copyfiles -f src/html/**/* dist",
"build:ci": "rimraf dist && vite build -l silent && copyfiles -f src/html/**/* dist"
"postversion": "npm run build",
"build": "rimraf dist && vite build && copyfiles -f src/html/**/* dist"
},
"devDependencies": {
"@polar/core": "^1.4.0",
Expand Down

0 comments on commit ceca8bc

Please sign in to comment.