@trackunit/iris-app-sdk-rspack 1.12.3 → 1.12.5
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,19 @@
|
|
|
1
|
+
## 1.12.5 (2026-03-18)
|
|
2
|
+
|
|
3
|
+
### 🧱 Updated Dependencies
|
|
4
|
+
|
|
5
|
+
- Updated iris-app-build-utilities to 1.13.5
|
|
6
|
+
- Updated iris-app-webpack-plugin to 1.12.5
|
|
7
|
+
- Updated iris-app-api to 1.15.4
|
|
8
|
+
|
|
9
|
+
## 1.12.4 (2026-03-18)
|
|
10
|
+
|
|
11
|
+
### 🧱 Updated Dependencies
|
|
12
|
+
|
|
13
|
+
- Updated iris-app-build-utilities to 1.13.4
|
|
14
|
+
- Updated iris-app-webpack-plugin to 1.12.4
|
|
15
|
+
- Updated iris-app-api to 1.15.3
|
|
16
|
+
|
|
1
17
|
## 1.12.3 (2026-03-18)
|
|
2
18
|
|
|
3
19
|
### 🧱 Updated Dependencies
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/iris-app-sdk-rspack",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.5",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"repository": "https://github.com/Trackunit/manager",
|
|
6
6
|
"executors": "./executors.json",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"rxjs": "7.8.1",
|
|
15
15
|
"win-ca": "^3.5.1",
|
|
16
16
|
"webpack-bundle-analyzer": "^4.8.0",
|
|
17
|
-
"@trackunit/iris-app-api": "1.15.
|
|
18
|
-
"@trackunit/iris-app-webpack-plugin": "1.12.
|
|
17
|
+
"@trackunit/iris-app-api": "1.15.4",
|
|
18
|
+
"@trackunit/iris-app-webpack-plugin": "1.12.5",
|
|
19
19
|
"tslib": "^2.6.2",
|
|
20
20
|
"ts-checker-rspack-plugin": "^1.1.1"
|
|
21
21
|
},
|
|
@@ -41,6 +41,7 @@ const getDefaultConfig = async (mode, nxRootDir, appDir, irisAppManifest, _conte
|
|
|
41
41
|
publicPath: "auto",
|
|
42
42
|
path: path.join(nxRootDir, "dist", relativeAppDir),
|
|
43
43
|
},
|
|
44
|
+
ignoreWarnings: [/Failed to parse source map.*superjson/],
|
|
44
45
|
target: "web",
|
|
45
46
|
entry: {},
|
|
46
47
|
devtool: false,
|
|
@@ -129,6 +130,7 @@ const getDefaultConfig = async (mode, nxRootDir, appDir, irisAppManifest, _conte
|
|
|
129
130
|
/[\\/]framer-motion[\\/]|[\\/]framer-motion-(?:virtual|npm)-/,
|
|
130
131
|
/[\\/]uuid[\\/]|[\\/]uuid-npm-/,
|
|
131
132
|
/[\\/]html-parse-stringify[\\/]|[\\/]html-parse-stringify-(?:virtual|npm)-/,
|
|
133
|
+
/node_modules\/superjson/,
|
|
132
134
|
],
|
|
133
135
|
type: "javascript/auto",
|
|
134
136
|
resolve: {
|