Skip to content

Commit

Permalink
Merge branch 'master' into refactor-web-event
Browse files Browse the repository at this point in the history
  • Loading branch information
hiyuki authored Feb 21, 2024
2 parents 3737bb4 + 823a279 commit ca75e65
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/api-proxy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@
},
"homepage": "https://github.com/didi/mpx#readme",
"dependencies": {
"axios": "^0.21.1"
"axios": "^1.6.7"
}
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
const toPosix = require('./to-posix')

module.exports = (loaders, loaderIndex) => {
for (let i = loaderIndex; i >= 0; i--) {
const currentLoader = loaders[i]
if (currentLoader.path.endsWith('node_modules/ts-loader/dist/stringify-loader.js')) {
const currentLoaderPath = toPosix(currentLoader.path)
if (currentLoaderPath.endsWith('node_modules/ts-loader/dist/stringify-loader.js')) {
return i
}
}
Expand Down

0 comments on commit ca75e65

Please sign in to comment.