@trackunit/iris-app-sdk-webpack 0.0.3 → 0.0.4
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 +8 -0
- package/executors.json +15 -0
- package/package.json +6 -7
- package/src/executors/build/schema.json +20 -0
- package/src/executors/serve/schema.json +20 -0
- package/README.internal.md +0 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [0.0.4](https://github.com/Trackunit/manager/compare/iris-app-sdk-webpack/0.0.3...iris-app-sdk-webpack/0.0.4) (2025-01-14)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `iris-app-build-utilities` updated to version `0.0.3`
|
|
10
|
+
* `shared-utils` updated to version `0.0.3`
|
|
11
|
+
* `iris-app-api` updated to version `0.0.3`
|
|
12
|
+
* `iris-app-webpack-plugin` updated to version `0.0.3`
|
|
5
13
|
## [0.0.3](https://github.com/Trackunit/manager/compare/iris-app-sdk-webpack/0.0.2...iris-app-sdk-webpack/0.0.3) (2025-01-10)
|
|
6
14
|
|
|
7
15
|
### Dependency Updates
|
package/executors.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/schema",
|
|
3
|
+
"executors": {
|
|
4
|
+
"serve": {
|
|
5
|
+
"implementation": "./src/executors/serve/executor",
|
|
6
|
+
"schema": "./src/executors/serve/schema.json",
|
|
7
|
+
"description": "serve executor"
|
|
8
|
+
},
|
|
9
|
+
"build": {
|
|
10
|
+
"implementation": "./src/executors/build/executor",
|
|
11
|
+
"schema": "./src/executors/build/schema.json",
|
|
12
|
+
"description": "build executor"
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/iris-app-sdk-webpack",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"repository": "https://github.com/Trackunit/manager",
|
|
6
6
|
"executors": "./executors.json",
|
|
@@ -8,12 +8,7 @@
|
|
|
8
8
|
"node": ">=20.x"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@trackunit/iris-app-api": "*",
|
|
12
|
-
"@trackunit/iris-app-build-utilities": "*",
|
|
13
|
-
"@trackunit/shared-utils": "*",
|
|
14
|
-
"@trackunit/iris-app-webpack-plugin": "*",
|
|
15
11
|
"webpack": "5.88.1",
|
|
16
|
-
"tslib": "^2.6.2",
|
|
17
12
|
"@nx/devkit": "19.8.3",
|
|
18
13
|
"rxjs": "7.8.1",
|
|
19
14
|
"webpack-dev-server": "5.1.0",
|
|
@@ -21,7 +16,11 @@
|
|
|
21
16
|
"pacote": "17.0.6",
|
|
22
17
|
"semver": "7.5.4",
|
|
23
18
|
"copy-webpack-plugin": "11.0.0",
|
|
24
|
-
"webpack-bundle-analyzer": "^4.8.0"
|
|
19
|
+
"webpack-bundle-analyzer": "^4.8.0",
|
|
20
|
+
"@trackunit/iris-app-build-utilities": "^0.0.464",
|
|
21
|
+
"@trackunit/shared-utils": "^0.0.92",
|
|
22
|
+
"@trackunit/iris-app-api": "^0.2.19",
|
|
23
|
+
"@trackunit/iris-app-webpack-plugin": "^0.0.237"
|
|
25
24
|
},
|
|
26
25
|
"main": "./src/index.js",
|
|
27
26
|
"type": "commonjs",
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 2,
|
|
3
|
+
"outputCapture": "direct-nodejs",
|
|
4
|
+
"$schema": "http://json-schema.org/schema",
|
|
5
|
+
"title": "Build executor for apps from the Iris App SDK",
|
|
6
|
+
"description": "",
|
|
7
|
+
"type": "object",
|
|
8
|
+
"properties": {
|
|
9
|
+
"webpackConfig": {
|
|
10
|
+
"type": "string",
|
|
11
|
+
"description": "",
|
|
12
|
+
"$default": {
|
|
13
|
+
"$source": "argv",
|
|
14
|
+
"index": 0
|
|
15
|
+
},
|
|
16
|
+
"x-prompt": "What is the path for the webpack config for this app?"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"required": []
|
|
20
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 2,
|
|
3
|
+
"outputCapture": "direct-nodejs",
|
|
4
|
+
"$schema": "http://json-schema.org/schema",
|
|
5
|
+
"title": "Serve executor for apps from the Iris App SDK",
|
|
6
|
+
"description": "",
|
|
7
|
+
"type": "object",
|
|
8
|
+
"properties": {
|
|
9
|
+
"webpackConfig": {
|
|
10
|
+
"type": "string",
|
|
11
|
+
"description": "",
|
|
12
|
+
"$default": {
|
|
13
|
+
"$source": "argv",
|
|
14
|
+
"index": 0
|
|
15
|
+
},
|
|
16
|
+
"x-prompt": "What is the path for the webpack config for this app?"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"required": []
|
|
20
|
+
}
|