-
Notifications
You must be signed in to change notification settings - Fork 280
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Replace browserify with tsup in adaptive-expressions * Remove remaining browserify packages * Fix streaming tests * Fix yarn.lock * fix depcheck
- Loading branch information
1 parent
d00038a
commit 84dc7e4
Showing
17 changed files
with
149 additions
and
1,008 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -45,15 +45,13 @@ | |
"resolutions": { | ||
"@microsoft/recognizers-text-number": "~1.3.1", | ||
"@types/ramda": "0.26.0", | ||
"babel-traverse": "npm:@babel/[email protected]", | ||
"lodash.pick": "file:overrides/lodash.pick", | ||
"**/nightwatch/ejs": "^3.1.10", | ||
"**/nightwatch/semver": "^7.5.2", | ||
"**/botbuilder-dialogs-adaptive-runtime-integration-restify/restify/send": "^0.19.0", | ||
"**/restify/find-my-way": "^8.2.2" | ||
}, | ||
"resolutionComments": { | ||
"babel-traverse": "Keep version pinned at '7.24.7'(different than other @babel/traverse), so it doesn't collide. Remove the resolution and override project when replacing browserify, so it removes esmify which has this dependency.", | ||
"lodash.pick": "Remove the resolution and override project when supporting Node >=18. Because we can't update nightwatch due to jsdom requires node >= 18. https://github.com/lodash/lodash/issues/5809#issuecomment-1910560681", | ||
"**/nightwatch/ejs": "Remove the resolution when supporting Node >=18. Because we can't update nightwatch due to jsdom requires node >= 18. https://github.com/lodash/lodash/issues/5809#issuecomment-1910560681", | ||
"**/nightwatch/semver": "Remove the resolution when nightwatch is updated to a latest version", | ||
|
@@ -71,9 +69,10 @@ | |
"@types/node": "18.19.47", | ||
"@types/sinon": "^17.0.3", | ||
"applicationinsights": "^2.9.6", | ||
"babelify": "^10.0.0", | ||
"browserify": "^17.0.0", | ||
"crypto-browserify": "^3.12.0", | ||
"depcheck": "^1.4.7", | ||
"esbuild-plugin-polyfill-node": "^0.3.0", | ||
"https-browserify": "^1.0.0", | ||
"eslint": "^9.12.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-import": "^2.31.0", | ||
|
@@ -82,22 +81,22 @@ | |
"eslint-plugin-mocha": "^10.5.0", | ||
"eslint-plugin-prettier": "^5.2.1", | ||
"eslint-plugin-security": "^3.0.1", | ||
"esmify": "^2.1.1", | ||
"exorcist": "^2.0.0", | ||
"mocha": "^10.7.3", | ||
"mocha-junit-reporter": "^2.2.1", | ||
"mocha": "^10.7.3", | ||
"npm-run-all": "^4.1.5", | ||
"nyc": "^17.0.0", | ||
"prettier": "^3.3.3", | ||
"rimraf": "^5.0.10", | ||
"shx": "^0.3.4", | ||
"sinon": "^19.0.2", | ||
"source-map-support": "^0.5.21", | ||
"sponge": "^0.1.0", | ||
"stream-browserify": "^3.0.0", | ||
"stream-http": "^3.2.0", | ||
"ts-node": "^10.9.2", | ||
"typedoc": "^0.26.7", | ||
"tsup": "^8.2.4", | ||
"typedoc-plugin-external-module-name": "^4.0.6", | ||
"typedoc-plugin-markdown": "^4.2.7", | ||
"typedoc": "^0.26.7", | ||
"typescript": "~4.7", | ||
"typescript-eslint": "^8.11.0", | ||
"webpack-dev-server": "^5.1.0", | ||
|
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.