@grafana/create-plugin 5.3.7-canary.1080.4955643.0 → 5.3.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,16 @@
1
+ # v5.3.7 (Fri Aug 30 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Create Plugin: Drop console statements in production builds [#1066](https://github.com/grafana/plugin-tools/pull/1066) ([@jackw](https://github.com/jackw))
6
+ - Create Plugin): Bump Webpack to >5.94.0 [#1083](https://github.com/grafana/plugin-tools/pull/1083) ([@jackw](https://github.com/jackw))
7
+
8
+ #### Authors: 1
9
+
10
+ - Jack Westbrook ([@jackw](https://github.com/jackw))
11
+
12
+ ---
13
+
1
14
  # v5.3.6 (Wed Aug 28 2024)
2
15
 
3
16
  #### 🐛 Bug Fix
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/create-plugin",
3
- "version": "5.3.7-canary.1080.4955643.0",
3
+ "version": "5.3.7",
4
4
  "repository": {
5
5
  "directory": "packages/create-plugin",
6
6
  "url": "https://github.com/grafana/plugin-tools"
@@ -87,5 +87,5 @@
87
87
  "engines": {
88
88
  "node": ">=20"
89
89
  },
90
- "gitHead": "495564390e2390d1cc73ccab9bc1ae19bc0fc88d"
90
+ "gitHead": "107b321c8114765c768457e769df4692b955e73e"
91
91
  }
@@ -163,6 +163,9 @@ const config = async (env): Promise<Configuration> => {
163
163
  format: {
164
164
  comments: (_, { type, value }) => type === 'comment2' && value.trim().startsWith('[create-plugin]'),
165
165
  },
166
+ compress: {
167
+ drop_console: ['log', 'info']
168
+ }
166
169
  },
167
170
  }),
168
171
  ],
@@ -51,10 +51,11 @@
51
51
  "sass-loader": "13.3.1",
52
52
  "style-loader": "3.3.3",
53
53
  "swc-loader": "^0.2.3",
54
+ "terser-webpack-plugin": "^5.3.10",
54
55
  "ts-node": "^10.9.2",
55
56
  "tsconfig-paths": "^4.2.0",
56
57
  "typescript": "5.5.4",
57
- "webpack": "^5.86.0",
58
+ "webpack": "^5.94.0",
58
59
  "webpack-cli": "^5.1.4",
59
60
  "webpack-livereload-plugin": "^3.0.2",
60
61
  "webpack-virtual-modules": "^0.6.2"
@@ -68,7 +69,7 @@
68
69
  "@grafana/runtime": "^11.2.0",
69
70
  "@grafana/ui": "^11.2.0",
70
71
  "@grafana/schema": "^10.4.0",{{#if_eq pluginType "scenesapp"}}
71
- "@grafana/scenes": "^5.10.2",{{/if_eq}}
72
+ "@grafana/scenes": "^5.10.1",{{/if_eq}}
72
73
  "react": "18.2.0",
73
74
  "react-dom": "18.2.0",{{#if isAppType}}
74
75
  "react-router-dom": "^{{ reactRouterVersion }}",