Skip to content

Commit f9b022a

Browse files
Upgrade ag-grid-community to v29.0.0 (#1290)
* Upgrade ag-grid-community to v29.0.0 * Update files * Fix webpack? --------- Co-authored-by: ManuelHentschel <[email protected]>
1 parent 884cf98 commit f9b022a

File tree

3 files changed

+18
-15
lines changed

3 files changed

+18
-15
lines changed

package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1502,7 +1502,9 @@
15021502
"items": {
15031503
"type": "string"
15041504
},
1505-
"default": ["."],
1505+
"default": [
1506+
"."
1507+
],
15061508
"markdownDescription": "Which local directories to try for local help pages previewer. Set to `[]` to disable."
15071509
},
15081510
"r.helpPanel.rpath": {
@@ -1818,7 +1820,7 @@
18181820
"default": false,
18191821
"description": "Default boolean value for automatically sharing R browser ports with guests."
18201822
},
1821-
"r.plot.devArgs" :{
1823+
"r.plot.devArgs": {
18221824
"type": "object",
18231825
"markdownDescription": "The arguments for the png device to replay user graphics to show in VSCode. Requires `#r.plot.useHttpgd#` to be set to `false`. \n\nChanges the option `vsc.dev.args` in R.",
18241826
"default": {
@@ -2025,7 +2027,7 @@
20252027
"webpack-cli": "^4.7.2"
20262028
},
20272029
"dependencies": {
2028-
"ag-grid-community": "^28.1.1",
2030+
"ag-grid-community": "^29.0.0",
20292031
"cheerio": "1.0.0-rc.10",
20302032
"crypto": "^1.0.1",
20312033
"ejs": "^3.1.7",

webpack.config.js

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ module.exports = {
1818
},
1919
devtool: 'source-map',
2020
externals: {
21+
'utf-8-validate': 'commonjs utf-8-validate',
22+
bufferutil: 'commonjs bufferutil',
2123
vscode: 'commonjs vscode' // the vscode-module is created on-the-fly and must be excluded. Add other modules that cannot be webpack'ed, 📖 -> https://webpack.js.org/configuration/externals/
2224
},
2325
resolve: {
@@ -40,13 +42,12 @@ module.exports = {
4042
plugins: [
4143
new CopyPlugin({
4244
patterns: [
43-
{ from: './node_modules/jquery/dist/jquery.min.js', to: 'resources' },
44-
{ from: './node_modules/jquery.json-viewer/json-viewer', to: 'resources' },
45-
{ from: './node_modules/ag-grid-community/dist/ag-grid-community.min.noStyle.js', to: 'resources' },
46-
{ from: './node_modules/ag-grid-community/dist/styles/ag-grid.min.css', to: 'resources' },
47-
{ from: './node_modules/ag-grid-community/dist/styles/ag-theme-balham.min.css', to: 'resources' },
48-
{ from: './node_modules/ag-grid-community/dist/styles/ag-theme-balham-dark.min.css', to: 'resources' },
49-
]
50-
}),
45+
{ from: './node_modules/jquery/dist/jquery.min.js', to: 'resources' },
46+
{ from: './node_modules/jquery.json-viewer/json-viewer', to: 'resources' },
47+
{ from: './node_modules/ag-grid-community/dist/ag-grid-community.min.noStyle.js', to: 'resources' },
48+
{ from: './node_modules/ag-grid-community/styles/ag-grid.min.css', to: 'resources' },
49+
{ from: './node_modules/ag-grid-community/styles/ag-theme-balham.min.css', to: 'resources' },
50+
]
51+
}),
5152
],
5253
};

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -571,10 +571,10 @@ acorn@^8.2.1, acorn@^8.5.0:
571571
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.7.1.tgz#0197122c843d1bf6d0a5e83220a788f278f63c30"
572572
integrity sha512-Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A==
573573

574-
ag-grid-community@^28.1.1:
575-
version "28.1.1"
576-
resolved "https://registry.yarnpkg.com/ag-grid-community/-/ag-grid-community-28.1.1.tgz#68b849ecf4c0849faa8e012003afb0923ee00d69"
577-
integrity sha512-WqWELTVXMrFHnyLHhD8HqMzrns+rjMuaOWcnLY+uO+j2jFN9QEasXPdT8zepNbNeUaIdCt1f1Q9Ipx0U1evNvQ==
574+
ag-grid-community@^29.0.0:
575+
version "29.0.0"
576+
resolved "https://registry.yarnpkg.com/ag-grid-community/-/ag-grid-community-29.0.0.tgz#33c8de7b253af15986c343f6d6fd098f3e6d681b"
577+
integrity sha512-onAQIqjhP1L93W5myAsfLBMBUyZPrWDb8FRulJuhjQKo8DEA4GSZ+oJHxwwLymm4biLu54zvZ+9GkTftha8gAg==
578578

579579
agent-base@6:
580580
version "6.0.2"

0 commit comments

Comments
 (0)