Skip to content

Commit

Permalink
Change semver version in package.json to version range (#54)
Browse files Browse the repository at this point in the history
- Change semver version in package.json to version range
- Fixes #49 
- Reverts changes from #36
- Add timeout to workflow
  • Loading branch information
dependabot-preview[bot] authored Apr 13, 2020
1 parent ea3c944 commit 3717ffa
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 15 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
matrix:
node-version: ['10', '12', '13']
os: [ubuntu-latest, windows-latest, macOS-latest]
timeout-minutes: 15

steps:
- uses: actions/checkout@v2
Expand Down
19 changes: 8 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@
"release-script": "./dist/release-script-cli.js"
},
"dependencies": {
"@types/semver": "^7.0.0",
"command-line-args": "5.1.1",
"command-line-usage": "6.1.0",
"semver": "7.2.1",
"semver": "^7.0.0",
"simple-git": "1.132.0"
},
"engines": {
Expand All @@ -40,7 +41,6 @@
"@types/jest": "25.2.1",
"@types/mkdirp": "1.0.0",
"@types/rimraf": "3.0.0",
"@types/semver": "7.1.0",
"@typescript-eslint/parser": "2.27.0",
"@typescript-eslint/eslint-plugin": "2.27.0",
"eslint": "6.8.0",
Expand All @@ -52,7 +52,7 @@
"rimraf": "3.0.2",
"rollup": "1.32.1",
"shx": "0.3.2",
"ts-jest": "25.3.1",
"ts-jest": "25.3.0",
"tslib": "1.11.1",
"typescript": "3.8.3"
},
Expand All @@ -61,7 +61,7 @@
"prebuild": "rimraf dist",
"build": "rollup -c && shx cp src/types.d.ts dist/release-script.d.ts",
"watch": "rollup -c --watch",
"test": "jest --clearCache && jest --coverage --maxWorkers=2"
"test": "jest --coverage --maxWorkers=2"
},
"files": [
"dist/"
Expand Down

0 comments on commit 3717ffa

Please sign in to comment.