@telia-ace/alliance-utilities 1.0.8-next.0 → 1.0.8
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 +13 -0
- package/dist/index.js +228 -226
- package/dist/index.js.map +1 -1
- package/dist/texts.d.ts +1 -1
- package/dist/translations.d.ts +1 -1
- package/package.json +5 -5
- package/typescript-config.json +2 -1
package/dist/texts.d.ts
CHANGED
package/dist/translations.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@telia-ace/alliance-utilities",
|
|
3
|
-
"version": "1.0.8
|
|
3
|
+
"version": "1.0.8",
|
|
4
4
|
"description": "Utilities used internally by ACE Alliance packages.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"author": "Telia Company AB",
|
|
@@ -22,16 +22,16 @@
|
|
|
22
22
|
],
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@types/fs-extra": "^11.0.1",
|
|
25
|
-
"fs-extra": "^11.1.
|
|
26
|
-
"vite": "^4.
|
|
25
|
+
"fs-extra": "^11.1.1",
|
|
26
|
+
"vite": "^4.2.1"
|
|
27
27
|
},
|
|
28
28
|
"publishConfig": {
|
|
29
29
|
"access": "public"
|
|
30
30
|
},
|
|
31
31
|
"scripts": {
|
|
32
|
-
"build:dev": "
|
|
32
|
+
"build:dev": "tsc && vite build --mode development",
|
|
33
33
|
"build:prod": "rimraf dist && tsc && vite build --mode prod",
|
|
34
34
|
"build:test": "rimraf dist && tsc && vite build --mode test",
|
|
35
|
-
"dev": "
|
|
35
|
+
"dev": "tsc && vite build --mode development --watch"
|
|
36
36
|
}
|
|
37
37
|
}
|
package/typescript-config.json
CHANGED