Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
opennms-bamboo committed Mar 15, 2023
2 parents 6100b68 + b2c6028 commit ba6b25f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ commands:
- run:
name: Run dist build
no_output_timeout: 20m
command: npm run dist
command: npm run full
build-merge:
steps:
- restore-node-cache
Expand All @@ -39,7 +39,7 @@ commands:
- run:
name: Run merge build
no_output_timeout: 20m
command: npm run build && npm run docs
command: npm run merge

jobs:
build:
Expand Down
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,10 @@
},
"scripts": {
"changelog": "standard-changelog -i CHANGELOG.md -s -f",
"update-browserslist": "npx --yes browserslist@latest --update-db",
"build": "webpack --mode production --env production",
"dev": "webpack --mode=development --progress",
"dist": "npm run lint && npm run test && npm run build && npm run docs",
"dist": "npm run lint && npm run test && npm run update-browserslist && npm run build && npm run docs",
"api": "typedoc",
"docs": "npm run api && antora --stacktrace generate local-site.yml",
"watch": "webpack --progress --watch",
Expand All @@ -110,6 +111,8 @@
"cli": "ts-node src/CLI.ts",
"docker-build": "npm ci && npm run dist && npm run changelog && ./fix-ownership.sh",
"docker": "docker run --rm --name opennms-js -v `pwd`:/build -w /build node:carbon npm run docker-build",
"prepare": "husky install"
"prepare": "husky install",
"full": "npm run dist",
"merge": "npm run update-browserslist && npm run build && npm run docs && npm run changelog"
}
}

0 comments on commit ba6b25f

Please sign in to comment.