Skip to content

Commit 29b9056

Browse files
authored
Release 12.1.0 (#121)
* chore: prepare next dev release * deps: switch to ts-checker-rspack-plugin (#120) * Prepare release version 12.1.0 --------- Co-authored-by: datavisyn-bot <> Co-authored-by: Michael Pühringer <[email protected]>
2 parents d9d001e + 69684e8 commit 29b9056

File tree

3 files changed

+517
-568
lines changed

3 files changed

+517
-568
lines changed

config/rspack.config.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
const path = require('path');
44
const fs = require('fs');
55
const { defineConfig } = require('@rspack/cli');
6-
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
6+
const { TsCheckerRspackPlugin } = require('ts-checker-rspack-plugin');
77
const dotenv = require('dotenv');
88
const DotenvPlugin = require('dotenv-webpack');
99
const dotenvExpand = require('dotenv-expand');
@@ -90,10 +90,6 @@ module.exports = (webpackEnv, argv) => {
9090
const useTailwind = fs.existsSync(path.join(workspacePath, 'tailwind.config.js'));
9191

9292
return defineConfig({
93-
watchOptions: {
94-
// Override the ignore to avoid ignoring node_modules: https://github.com/web-infra-dev/rspack/pull/8645
95-
ignored: /[\\/](?:\.git)[\\/]/,
96-
},
9793
mode,
9894
// Logging noise constrained to errors and warnings
9995
stats: 'errors-warnings', // { logging: 'verbose', timings: true, assets: true },
@@ -106,6 +102,10 @@ module.exports = (webpackEnv, argv) => {
106102
[workspaceRegistryFile, path.join(workspacePath, entry.js), entry.scss ? path.join(workspacePath, entry.scss) : './workspace.scss'].filter((v) => fs.existsSync(v)),
107103
]),
108104
),
105+
watchOptions: {
106+
// Override the ignore to avoid ignoring node_modules: https://github.com/web-infra-dev/rspack/pull/8645
107+
ignored: /[\\/](?:\.git)[\\/]/,
108+
},
109109
devServer: isEnvDevelopment
110110
? {
111111
static: path.resolve(workspacePath, 'bundles'),
@@ -452,7 +452,7 @@ module.exports = (webpackEnv, argv) => {
452452
}),
453453
),
454454
isEnvDevelopment
455-
&& new ForkTsCheckerWebpackPlugin({
455+
&& new TsCheckerRspackPlugin({
456456
async: isEnvDevelopment,
457457
typescript: {
458458
diagnosticOptions: {

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "visyn_scripts",
33
"description": "",
4-
"version": "12.0.2",
4+
"version": "12.1.0",
55
"author": {
66
"name": "datavisyn GmbH",
77
"email": "[email protected]",
@@ -68,7 +68,6 @@
6868
"eslint-plugin-react-compiler": "0.0.0-experimental-decd7b8-20250118",
6969
"eslint-plugin-react-hooks": "^5.1.0",
7070
"eslint-plugin-unused-imports": "^4.1.4",
71-
"fork-ts-checker-webpack-plugin": "^9.0.2",
7271
"fs-extra": "^11.3.0",
7372
"glob": "^11.0.1",
7473
"html-loader": "~5.1.0",
@@ -91,6 +90,7 @@
9190
"sass-loader": "^16.0.4",
9291
"shx": "~0.3.4",
9392
"tailwindcss": "^3.4.17",
93+
"ts-checker-rspack-plugin": "^1.1.1",
9494
"ts-node": "^10.9.2",
9595
"tslib": "~2.8.1",
9696
"typescript": "~5.7.3",

0 commit comments

Comments
 (0)