@telia-ace/alliance-utilities 1.0.0-beta.5 → 1.0.0-beta.7
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/LICENSE.txt +5 -5
- package/README.md +3 -3
- package/dist/index.d.ts +1 -1
- package/dist/index.js +944 -1408
- package/dist/index.js.map +1 -1
- package/dist/vite-plugin-css-import.d.ts +2 -2
- package/package.json +33 -33
- package/prettier-config.json +10 -10
- package/typescript-config.json +21 -21
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import type { PluginOption } from 'vite';
|
|
2
|
-
export default function (outDirName: string, targetFileName: string): PluginOption;
|
|
1
|
+
import type { PluginOption } from 'vite';
|
|
2
|
+
export default function (outDirName: string, targetFileName: string): PluginOption;
|
package/package.json
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
}
|
|
2
|
+
"name": "@telia-ace/alliance-utilities",
|
|
3
|
+
"version": "1.0.0-beta.7",
|
|
4
|
+
"description": "Utilities used internally by ACE Alliance packages.",
|
|
5
|
+
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
|
+
"author": "Telia Company AB",
|
|
7
|
+
"main": "dist/index.js",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": "./dist/index.js",
|
|
10
|
+
"./prettier-config": "./prettier-config.json",
|
|
11
|
+
"./typescript-config": "./typescript-config.json"
|
|
12
|
+
},
|
|
13
|
+
"types": "dist/index.d.ts",
|
|
14
|
+
"type": "module",
|
|
15
|
+
"files": [
|
|
16
|
+
"typescript-config.json",
|
|
17
|
+
"prettier-config.json",
|
|
18
|
+
"LICENSE.txt",
|
|
19
|
+
"README.md",
|
|
20
|
+
"dist"
|
|
21
|
+
],
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@telia-ace/alliance-utilities": "1.0.0-beta.7",
|
|
24
|
+
"@types/fs-extra": "^9.0.13",
|
|
25
|
+
"fs-extra": "^10.1.0",
|
|
26
|
+
"vite": "^3.1.8"
|
|
27
|
+
},
|
|
28
|
+
"publishConfig": {
|
|
29
|
+
"access": "public"
|
|
30
|
+
},
|
|
31
|
+
"scripts": {
|
|
32
|
+
"build": "rimraf dist && tsc -emitDeclarationOnly && vite build"
|
|
33
|
+
}
|
|
34
|
+
}
|
package/prettier-config.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json.schemastore.org/prettierrc.json",
|
|
3
|
-
"trailingComma": "es5",
|
|
4
|
-
"tabWidth": 4,
|
|
5
|
-
"semi": true,
|
|
6
|
-
"singleQuote": true,
|
|
7
|
-
"jsxSingleQuote": false,
|
|
8
|
-
"printWidth": 100,
|
|
9
|
-
"arrowParens": "always"
|
|
10
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/prettierrc.json",
|
|
3
|
+
"trailingComma": "es5",
|
|
4
|
+
"tabWidth": 4,
|
|
5
|
+
"semi": true,
|
|
6
|
+
"singleQuote": true,
|
|
7
|
+
"jsxSingleQuote": false,
|
|
8
|
+
"printWidth": 100,
|
|
9
|
+
"arrowParens": "always"
|
|
10
|
+
}
|
package/typescript-config.json
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "https://json.schemastore.org/tsconfig.json",
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"allowJs": true,
|
|
5
|
-
"declaration": true,
|
|
6
|
-
"downlevelIteration": true,
|
|
7
|
-
"esModuleInterop": true,
|
|
8
|
-
"isolatedModules": true,
|
|
9
|
-
"lib": ["esnext", "dom"],
|
|
10
|
-
"moduleResolution": "node",
|
|
11
|
-
"resolveJsonModule": true,
|
|
12
|
-
"skipLibCheck": true,
|
|
13
|
-
"strict": true,
|
|
14
|
-
"module": "ESNext",
|
|
15
|
-
"target": "ESNext",
|
|
16
|
-
"jsx": "preserve",
|
|
17
|
-
"importsNotUsedAsValues": "error",
|
|
18
|
-
"noUnusedLocals": true,
|
|
19
|
-
"noUnusedParameters": true
|
|
20
|
-
}
|
|
21
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/tsconfig.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"allowJs": true,
|
|
5
|
+
"declaration": true,
|
|
6
|
+
"downlevelIteration": true,
|
|
7
|
+
"esModuleInterop": true,
|
|
8
|
+
"isolatedModules": true,
|
|
9
|
+
"lib": ["esnext", "dom"],
|
|
10
|
+
"moduleResolution": "node",
|
|
11
|
+
"resolveJsonModule": true,
|
|
12
|
+
"skipLibCheck": true,
|
|
13
|
+
"strict": true,
|
|
14
|
+
"module": "ESNext",
|
|
15
|
+
"target": "ESNext",
|
|
16
|
+
"jsx": "preserve",
|
|
17
|
+
"importsNotUsedAsValues": "error",
|
|
18
|
+
"noUnusedLocals": true,
|
|
19
|
+
"noUnusedParameters": true
|
|
20
|
+
}
|
|
21
|
+
}
|