Skip to content
This repository was archived by the owner on Mar 20, 2023. It is now read-only.

Commit b17f89c

Browse files
build: change to 'build' to 'build:npm' (#708)
1 parent 39132be commit b17f89c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
run: npm ci
7474

7575
- name: Build NPM package
76-
run: npm run build
76+
run: npm run build:npm
7777

7878
- name: Run Integration Tests
7979
run: npm run check:integrations

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"scripts": {
3838
"preversion": ". ./resources/checkgit.sh && npm ci",
3939
"changelog": "node resources/gen-changelog.js",
40-
"test": "npm run lint && npm run check && npm run testonly:cover && npm run prettier:check && npm run check:spelling && npm run build && npm run check:integrations",
40+
"test": "npm run lint && npm run check && npm run testonly:cover && npm run prettier:check && npm run check:spelling && npm run build:npm && npm run check:integrations",
4141
"lint": "eslint .",
4242
"check": "tsc --noEmit",
4343
"testonly": "mocha src/**/__tests__/**/*.ts",
@@ -46,7 +46,7 @@
4646
"prettier:check": "prettier --check .",
4747
"check:spelling": "cspell '**/*'",
4848
"check:integrations": "mocha --full-trace integrationTests/*-test.js",
49-
"build": "node resources/build.js",
49+
"build:npm": "node resources/build-npm.js",
5050
"start": "node -r ./resources/register.js examples/index.ts"
5151
},
5252
"dependencies": {

0 commit comments

Comments
 (0)