@kwiz/common 1.0.2 → 1.0.4
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/package.json +6 -3
- package/tsconfig.json +0 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kwiz/common",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "KWIZ common utilities and helpers for M365 platform",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -18,7 +18,10 @@
|
|
|
18
18
|
"build-explain": "tsc --explainFiles",
|
|
19
19
|
"build-link": "tsc && npm link",
|
|
20
20
|
"test": "node --loader tsx --test src",
|
|
21
|
-
"
|
|
21
|
+
"npm-v-patch": "npm version patch",
|
|
22
|
+
"npm-v-major": "npm version major",
|
|
23
|
+
"npm-publish": "npm publish",
|
|
24
|
+
"reset-repo": "git fetch origin && git reset --hard origin/main"
|
|
22
25
|
},
|
|
23
26
|
"repository": {
|
|
24
27
|
"type": "git",
|
|
@@ -57,4 +60,4 @@
|
|
|
57
60
|
"get-tsconfig": "^4.7.2",
|
|
58
61
|
"esbuild": "^0.19.12"
|
|
59
62
|
}
|
|
60
|
-
}
|
|
63
|
+
}
|
package/tsconfig.json
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"module": "commonjs",
|
|
4
|
-
"target": "ES2016",
|
|
5
|
-
"outDir": "dist",
|
|
6
|
-
"rootDir": "./src",
|
|
7
|
-
"sourceMap": true,
|
|
8
|
-
"declaration": true,
|
|
9
|
-
"strict": false,
|
|
10
|
-
"typeRoots": [
|
|
11
|
-
"./src/@types"
|
|
12
|
-
],
|
|
13
|
-
},
|
|
14
|
-
"include": [
|
|
15
|
-
"./src"
|
|
16
|
-
],
|
|
17
|
-
"exclude": [
|
|
18
|
-
"node_modules",
|
|
19
|
-
"**/*.test.js"
|
|
20
|
-
]
|
|
21
|
-
}
|