Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3,301 changes: 2,338 additions & 963 deletions package-lock.json

Large diffs are not rendered by default.

7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
"typescript": "^5.0.4",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.2",
"webpack-dev-server": "^5.2.5",
"webpack-merge": "^5.10.0"
},
"dependencies": {
Expand All @@ -85,12 +85,17 @@
"@xmldom/xmldom": "0.8.13",
"cipher-base": "1.0.5",
"fast-uri": "3.1.2",
"fast-xml-parser": "5.7.0",
"flatted": "3.4.2",
"follow-redirects": "1.16.0",
"form-data": "4.0.6",
"js-yaml@4": "4.2.0",
"jsonata": "2.2.1",
"koa": "2.16.2",
"launch-editor": "2.14.1",
"linkify-it": "5.0.1",
"lodash": "4.18.0",
"markdown-it": "14.2.0",
"morgan": "1.11.0",
"node-forge": "1.4.0",
"on-headers": "1.1.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@
"@types/jsdom": "^21.1.6",
"@types/lodash": "^4.14.180",
"@types/lokijs": "^1.5.14",
"@types/markdown-it": "^13.0.2",
"@types/markdown-it": "^14.1.2",
"@types/mime-types": "^2.1.4",
"@types/mocha": "^10.0.6",
"@types/node": "^16.18.95",
Expand All @@ -557,7 +557,7 @@
"c8": "^9.0.0",
"circular-dependency-plugin": "^5.2.2",
"css-loader": "^6.10.0",
"esbuild-loader": "2.20.0",
"esbuild-loader": "4.5.0",
"file-loader": "^6.2.0",
"jsdom": "^23.0.1",
"json-schema-to-typescript": "^13.1.1",
Expand Down Expand Up @@ -658,7 +658,7 @@
"jsonc-parser": "^3.2.0",
"lodash": "^4.17.21",
"lokijs": "^1.5.12",
"markdown-it": "^13.0.2",
"markdown-it": "^14.2.0",
"mime-types": "^2.1.32",
"node-fetch": "^2.7.0",
"portfinder": "^1.0.32",
Expand Down
4 changes: 2 additions & 2 deletions packages/webpack.base.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

const path = require('path')
const webpack = require('webpack')
const { ESBuildMinifyPlugin } = require('esbuild-loader')
const { EsbuildPlugin } = require('esbuild-loader')
const fs = require('fs')
const { NLSBundlePlugin } = require('vscode-nls-dev/lib/webpack-bundler')
const CircularDependencyPlugin = require('circular-dependency-plugin')
Expand Down Expand Up @@ -114,7 +114,7 @@ module.exports = (env = {}, argv = {}) => {
optimization: {
minimize: !isDevelopment,
minimizer: [
new ESBuildMinifyPlugin({
new EsbuildPlugin({
target: 'es2021',
// Are these enabled by default?
// minify: true,
Expand Down

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

Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
"node": ">=18.0.0"
},
"overrides": {
"fast-xml-parser": "4.5.7"
"fast-xml-parser": "5.7.0"
},
"typesVersions": {
"<4.0": {
Expand Down
91 changes: 84 additions & 7 deletions src.gen/@amzn/codewhisperer-streaming/package-lock.json

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

2 changes: 1 addition & 1 deletion src.gen/@amzn/codewhisperer-streaming/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
"node": ">=18.0.0"
},
"overrides": {
"fast-xml-parser": "4.5.7"
"fast-xml-parser": "5.7.0"
},
"typesVersions": {
"<4.0": {
Expand Down
Loading