apprun 3.37.0 → 3.37.1
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 +14 -4
- package/dist/apprun-code.js +1 -1
- package/dist/apprun-code.js.map +1 -1
- package/dist/apprun-dev-tools.js +1 -1
- package/dist/apprun-dev-tools.js.map +1 -1
- package/dist/apprun-html.esm.js +1 -1
- package/dist/apprun-html.esm.js.map +1 -1
- package/dist/apprun-html.js +1 -1
- package/dist/apprun-html.js.map +1 -1
- package/dist/apprun-play-html.esm.js +1 -1
- package/dist/apprun-play-html.esm.js.map +1 -1
- package/dist/apprun-play.js +1 -1
- package/dist/apprun-play.js.map +1 -1
- package/dist/apprun.esm.js +1 -1
- package/dist/apprun.esm.js.map +1 -1
- package/dist/apprun.js +1 -1
- package/dist/apprun.js.map +1 -1
- package/esm/version.js +1 -1
- package/jsx-runtime.js +1 -1
- package/jsx-runtime.js.map +1 -1
- package/package.json +4 -4
- package/src/version.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "apprun",
|
|
3
|
-
"version": "3.37.
|
|
3
|
+
"version": "3.37.1",
|
|
4
4
|
"description": "JavaScript library that has Elm inspired architecture, event pub-sub and components",
|
|
5
5
|
"main": "dist/apprun.js",
|
|
6
6
|
"module": "esm/apprun.js",
|
|
@@ -44,10 +44,8 @@
|
|
|
44
44
|
"jest": "^29.7.0",
|
|
45
45
|
"jest-environment-jsdom": "^29.7.0",
|
|
46
46
|
"json-loader": "^0.5.7",
|
|
47
|
-
"immer": "^10.1.1",
|
|
48
47
|
"lit": "^3.3.1",
|
|
49
48
|
"marked": "^16.0.0",
|
|
50
|
-
"property-information": "^7.1.0",
|
|
51
49
|
"rollup": "^4.45.1",
|
|
52
50
|
"ts-jest": "^29.4.0",
|
|
53
51
|
"ts-loader": "^9.5.2",
|
|
@@ -57,6 +55,8 @@
|
|
|
57
55
|
"webpack-dev-server": "^5.2.2"
|
|
58
56
|
},
|
|
59
57
|
"dependencies": {
|
|
60
|
-
"commander": "^14.0.0"
|
|
58
|
+
"commander": "^14.0.0",
|
|
59
|
+
"immer": "^10.1.1",
|
|
60
|
+
"property-information": "^7.1.0"
|
|
61
61
|
}
|
|
62
62
|
}
|
package/src/version.ts
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
|
|
11
11
|
// Import version from package.json to maintain single source of truth
|
|
12
12
|
// This version string is used across the framework
|
|
13
|
-
export const APPRUN_VERSION = '3.37.
|
|
13
|
+
export const APPRUN_VERSION = '3.37.1';
|
|
14
14
|
|
|
15
15
|
// Version string with prefix for global tracking
|
|
16
16
|
export const APPRUN_VERSION_GLOBAL = `AppRun-${APPRUN_VERSION}`;
|