@ws-ui/formatter 0.1.28 → 0.1.29
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/dist/date.d.ts +2 -2
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.es.js +5178 -5174
- package/dist/index.es.js.map +1 -1
- package/package.json +5 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ws-ui/formatter",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.29",
|
|
4
4
|
"description": "A module for formatting text, dates and numbers",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./dist/index.es.js",
|
|
@@ -10,12 +10,12 @@
|
|
|
10
10
|
"dist"
|
|
11
11
|
],
|
|
12
12
|
"scripts": {
|
|
13
|
-
"test:watch": "
|
|
14
|
-
"test:debug": "node --inspect-brk node_modules/.bin/
|
|
13
|
+
"test:watch": "vitest --watch",
|
|
14
|
+
"test:debug": "node --inspect-brk node_modules/.bin/vitest --runInBand",
|
|
15
15
|
"build": "vite build && tsc",
|
|
16
16
|
"postbuild": "yalc push --changed",
|
|
17
17
|
"bundle": "node ./scripts/bundle.js",
|
|
18
|
-
"test": "
|
|
18
|
+
"test": "vitest",
|
|
19
19
|
"lint": "eslint .",
|
|
20
20
|
"format": "prettier --write src/**/*.ts && npm run lint -- --fix",
|
|
21
21
|
"prepack": "npm run build"
|
|
@@ -40,6 +40,7 @@
|
|
|
40
40
|
"typescript": "^5.1.6",
|
|
41
41
|
"vite": "^5.2.12",
|
|
42
42
|
"vite-plugin-dts": "^3.9.1",
|
|
43
|
+
"vitest": "^1.6.0",
|
|
43
44
|
"yalc": "^1.0.0-pre.53"
|
|
44
45
|
},
|
|
45
46
|
"dependencies": {
|