@grafana/create-plugin 4.12.0-canary.942.feafd59.0 → 4.12.0

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,15 @@
1
+ # v4.12.0 (Tue Jun 11 2024)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - Create Plugin: Support WASM in plugin builds [#953](https://github.com/grafana/plugin-tools/pull/953) ([@jackw](https://github.com/jackw))
6
+
7
+ #### Authors: 1
8
+
9
+ - Jack Westbrook ([@jackw](https://github.com/jackw))
10
+
11
+ ---
12
+
1
13
  # v4.11.4 (Thu Jun 06 2024)
2
14
 
3
15
  #### 🐛 Bug Fix
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/create-plugin",
3
- "version": "4.12.0-canary.942.feafd59.0",
3
+ "version": "4.12.0",
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": "feafd5926f8ceb0959044c13918bf1f05f003125"
90
+ "gitHead": "3a4700bc5722cb6fe837d6391baddb33c6f2256c"
91
91
  }
@@ -73,6 +73,11 @@ const config = async (env): Promise<Configuration> => {
73
73
  },
74
74
  ],
75
75
 
76
+ // Support WebAssembly according to latest spec - makes WebAssembly module async
77
+ experiments: {
78
+ asyncWebAssembly: true,
79
+ },
80
+
76
81
  mode: env.production ? 'production' : 'development',
77
82
 
78
83
  module: {