-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(stateParams): $inherit is not affected by enumerable prototype cu…
…stom methods (#841)
- Loading branch information
Showing
56 changed files
with
1,360 additions
and
2,568 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ jobs: | |
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 16 | ||
node-version: 18 | ||
- name: Install Dependencies | ||
run: yarn install --pure-lockfile | ||
- name: Check Peer Dependencies | ||
|
@@ -42,7 +42,6 @@ jobs: | |
- uses: actions/checkout@v2 | ||
- name: Prepare to Test Downstream Projects | ||
run: | | ||
npm config set scripts-prepend-node-path auto | ||
git config --global user.email [email protected] | ||
git config --global user.name uirouter_github_actions | ||
- name: Install Dependencies | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@uirouter/core", | ||
"description": "UI-Router Core: Framework agnostic, State-based routing for JavaScript Single Page Apps", | ||
"version": "6.1.0", | ||
"version": "6.1.1", | ||
"scripts": { | ||
"clean": "shx rm -rf lib lib-esm _bundles .cache _doc", | ||
"compile": "npm run clean && tsc && tsc -m es6 --outDir lib-esm", | ||
|
@@ -66,33 +66,34 @@ | |
"module": "lib-esm/index.js", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@types/jasmine": "^3.3.13", | ||
"@types/jasmine": "^5.1.4", | ||
"@types/jquery": "^3.3.36", | ||
"@uirouter/publish-scripts": "^2.6.0", | ||
"@uirouter/publish-scripts": "^2.6.3", | ||
"bufferutil": "4.0.2", | ||
"dts-downlevel": "^0.4.0", | ||
"fork-ts-checker-webpack-plugin": "^6.0.8", | ||
"fork-ts-checker-webpack-plugin": "^9.0.2", | ||
"husky": "^4.2.5", | ||
"jasmine-core": "^3.3.0", | ||
"karma": "^5.0.4", | ||
"karma-chrome-launcher": "^3.1.0", | ||
"karma-firefox-launcher": "^2.1.0", | ||
"karma-jasmine": "^4.0.1", | ||
"karma-script-launcher": "^1.0.0", | ||
"karma-sourcemap-loader": "^0.3.7", | ||
"karma-webpack": "^4.0.2", | ||
"karma-sourcemap-loader": "^0.4.0", | ||
"karma-webpack": "^5.0.1", | ||
"eslint": "^8.57.0", | ||
"@typescript-eslint/parser": "^7.16.0", | ||
"@typescript-eslint/eslint-plugin": "^7.16.0", | ||
"prettier": "^2.0.5", | ||
"pretty-quick": "^3.1.0", | ||
"rollup": "1.32.1", | ||
"rollup-plugin-node-resolve": "^5.0.2", | ||
"rollup-plugin-sourcemaps": "^0.6.1", | ||
"rollup-plugin-uglify": "^6.0.0", | ||
"ts-loader": "^8.0.12", | ||
"tslint": "5.20.1", | ||
"tslint-eslint-rules": "^5.3.1", | ||
"typescript": "~3.9", | ||
"typescript": "~5.4.5", | ||
"utf-8-validate": "5.0.3", | ||
"webpack": "^4.34.0" | ||
"webpack": "^5.92.1" | ||
}, | ||
"resolutions": { | ||
"chokidar": "3.3.1" | ||
|
@@ -122,5 +123,6 @@ | |
"Trace" | ||
] | ||
} | ||
} | ||
}, | ||
"packageManager": "[email protected]+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.