@grafana/create-plugin 2.10.2 → 2.10.3-canary.647.95c92b2.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@grafana/create-plugin",
3
- "version": "2.10.2",
3
+ "version": "2.10.3-canary.647.95c92b2.0",
4
4
  "main": "index.js",
5
5
  "repository": {
6
6
  "directory": "packages/create-plugin",
@@ -66,5 +66,5 @@
66
66
  "engines": {
67
67
  "node": ">=20"
68
68
  },
69
- "gitHead": "c603d0132d6511e499d416a77d60338062ffec38"
69
+ "gitHead": "95c92b2e60a89d5249839507bf531da583bfe6ce"
70
70
  }
@@ -181,18 +181,20 @@ const config = async (env): Promise<Configuration> => {
181
181
  ],
182
182
  },
183
183
  ]),
184
- new ForkTsCheckerWebpackPlugin({
185
- async: Boolean(env.development),
186
- issue: {
187
- include: [{ file: '**/*.{ts,tsx}' }],
188
- },
189
- typescript: { configFile: path.join(process.cwd(), 'tsconfig.json') },
190
- }),
191
- new ESLintPlugin({
192
- extensions: ['.ts', '.tsx'],
193
- lintDirtyModulesOnly: Boolean(env.development), // don't lint on start, only lint changed files
194
- }),
195
- ...(env.development ? [new LiveReloadPlugin()] : []),
184
+ ...(env.development ? [
185
+ new LiveReloadPlugin(),
186
+ new ForkTsCheckerWebpackPlugin({
187
+ async: Boolean(env.development),
188
+ issue: {
189
+ include: [{ file: '**/*.{ts,tsx}' }],
190
+ },
191
+ typescript: { configFile: path.join(process.cwd(), 'tsconfig.json') },
192
+ }),
193
+ new ESLintPlugin({
194
+ extensions: ['.ts', '.tsx'],
195
+ lintDirtyModulesOnly: Boolean(env.development), // don't lint on start, only lint changed files
196
+ }),
197
+ ] : []),
196
198
  ],
197
199
 
198
200
  resolve: {