@milaboratories/milaboratories.monetization-test.ui 1.1.136 → 1.1.138
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/.turbo/turbo-build.log +4 -306
- package/.turbo/turbo-lint.log +5 -0
- package/.turbo/turbo-type-check.log +2 -2
- package/CHANGELOG.md +16 -0
- package/dist/assets/{index-K2Ta70b6.js → index-3JWmNDX3.js} +2 -2
- package/dist/assets/{index-K2Ta70b6.js.map → index-3JWmNDX3.js.map} +1 -1
- package/dist/index.html +1 -1
- package/package.json +13 -11
- package/tsconfig.json +1 -1
package/dist/index.html
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
<meta charset="UTF-8" />
|
|
5
5
|
<meta http-equiv="Content-Security-Policy" content="script-src 'self' blob:">
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
|
-
<script type="module" crossorigin src="./assets/index-
|
|
7
|
+
<script type="module" crossorigin src="./assets/index-3JWmNDX3.js"></script>
|
|
8
8
|
</head>
|
|
9
9
|
<body>
|
|
10
10
|
<div id="app"></div>
|
package/package.json
CHANGED
|
@@ -1,25 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@milaboratories/milaboratories.monetization-test.ui",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.138",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"vue": "^3.5.24",
|
|
7
7
|
"zod": "~3.23.8",
|
|
8
|
-
"@milaboratories/milaboratories.monetization-test.model": "1.0.
|
|
9
|
-
"@platforma-sdk/model": "1.
|
|
10
|
-
"@platforma-sdk/ui-vue": "1.48.
|
|
8
|
+
"@milaboratories/milaboratories.monetization-test.model": "1.0.36",
|
|
9
|
+
"@platforma-sdk/model": "1.48.2",
|
|
10
|
+
"@platforma-sdk/ui-vue": "1.48.2"
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
|
+
"eslint": "^9.25.1",
|
|
13
14
|
"typescript": "~5.6.3",
|
|
14
|
-
"@
|
|
15
|
-
"@milaboratories/
|
|
16
|
-
"@milaboratories/ts-
|
|
15
|
+
"@platforma-sdk/eslint-config": "1.2.0",
|
|
16
|
+
"@milaboratories/build-configs": "1.2.0",
|
|
17
|
+
"@milaboratories/ts-configs": "1.2.0",
|
|
18
|
+
"@milaboratories/ts-builder": "1.2.0"
|
|
17
19
|
},
|
|
18
20
|
"scripts": {
|
|
19
|
-
"dev": "ts-builder serve --target
|
|
21
|
+
"dev": "ts-builder serve --target block-ui",
|
|
20
22
|
"lint": "eslint .",
|
|
21
|
-
"watch": "ts-builder build --target
|
|
22
|
-
"build": "ts-builder build --target
|
|
23
|
-
"type-check": "ts-builder types --target
|
|
23
|
+
"watch": "ts-builder build --target block-ui --watch",
|
|
24
|
+
"build": "ts-builder build --target block-ui",
|
|
25
|
+
"type-check": "ts-builder types --target block-ui"
|
|
24
26
|
}
|
|
25
27
|
}
|
package/tsconfig.json
CHANGED