Skip to content

Commit

Permalink
examples: Removed webpack fork-ts-checker-webpack-plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
JumpLink committed Feb 12, 2025
1 parent 5039f76 commit d1e462f
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 194 deletions.
1 change: 0 additions & 1 deletion examples/glib-2-spawn-command/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"fork-ts-checker-webpack-plugin": "^9.0.2",
"ts-loader": "^9.5.2",
"typescript": "^5.7.3",
"webpack": "^5.97.1",
Expand Down
7 changes: 1 addition & 6 deletions examples/glib-2-spawn-command/webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import ForkTsCheckerWebpackPlugin from 'fork-ts-checker-webpack-plugin/lib/index.js';

export default {
mode: 'production',
entry: ['./main.ts'],
Expand Down Expand Up @@ -35,8 +33,5 @@ export default {
return callback(null, 'module ' +request);
}
callback();
},
plugins: [
new ForkTsCheckerWebpackPlugin(),
],
}
};
1 change: 0 additions & 1 deletion examples/gtk-3-browser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"fork-ts-checker-webpack-plugin": "^9.0.2",
"ts-loader": "^9.5.2",
"typescript": "^5.7.3",
"webpack": "^5.97.1",
Expand Down
7 changes: 1 addition & 6 deletions examples/gtk-3-browser/webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import ForkTsCheckerWebpackPlugin from 'fork-ts-checker-webpack-plugin/lib/index.js';

export default {
mode: 'production',
entry: ['./main.ts'],
Expand Down Expand Up @@ -35,8 +33,5 @@ export default {
return callback(null, 'module ' +request);
}
callback();
},
plugins: [
new ForkTsCheckerWebpackPlugin(),
],
}
};
1 change: 0 additions & 1 deletion examples/gtk-3-builder/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"fork-ts-checker-webpack-plugin": "^9.0.2",
"raw-loader": "^4.0.2",
"ts-loader": "^9.5.2",
"typescript": "^5.7.3",
Expand Down
7 changes: 1 addition & 6 deletions examples/gtk-3-builder/webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import ForkTsCheckerWebpackPlugin from 'fork-ts-checker-webpack-plugin/lib/index.js';

export default {
mode: 'production',
entry: ['./main.ts'],
Expand Down Expand Up @@ -38,8 +36,5 @@ export default {
return callback(null, 'module ' +request);
}
callback();
},
plugins: [
new ForkTsCheckerWebpackPlugin(),
],
}
};
Loading

0 comments on commit d1e462f

Please sign in to comment.