Skip to content

Commit 254fd30

Browse files
committed
Updates CI commands to call "release" instead of "dist"
1 parent d46deee commit 254fd30

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ install:
1818
- npm install
1919
script:
2020
- npm run test-ci
21-
- npm run dist
21+
- npm run release
2222
cache:
2323
apt: true
2424
directories:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ The electron instance will automatically reload whenever a change is made
5555
- `npm test`: Runs all tests
5656
- `npm run build`: Completely builds the app (no watch)
5757
- `npm run lint`: Checks all JS code against defined code styling rules
58-
- `npm run dist`: Creates a standalone app bundle for all operating systems
58+
- `npm run release`: Creates a standalone app bundle for all operating systems
5959

6060
### Guidelines
6161
- Make sure that no tests are failing

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ test_script:
1515
- npm run test-ci
1616

1717
build_script:
18-
- npm run dist:win64
18+
- npm run release:win64

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
"test": "mocha-webpack --reporter dot --webpack-config webpack.test.config.js --recursive test/unit",
2323
"test-ci": "npm run lint && npm run test",
2424
"release": "npm run build && build --x64",
25-
"release-upgrade-test": "npm run predist && build --x64 --config.publish.provider=generic --config.publish.url=http://localhost:9000",
25+
"release-upgrade-test": "npm run build && build --x64 --config.publish.provider=generic --config.publish.url=http://localhost:9000",
2626
"release:win64": "npm run build && build --windows --x64",
27-
"release-upgrade-test:win64": "npm run predist:win64 && build --windows --x64 --config.publish.provider=generic --config.publish.url=http://localhost:9000"
27+
"release-upgrade-test:win64": "npm run build && build --windows --x64 --config.publish.provider=generic --config.publish.url=http://localhost:9000"
2828
},
2929
"dependencies": {
3030
"@james-proxy/james-browser-launcher": "^1.3.2",

0 commit comments

Comments
 (0)