@sydsoft/base 1.2.0 → 1.4.0
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/esm/index.d.ts +3 -0
- package/dist/esm/index.js +3 -0
- package/package.json +9 -5
- package/dist/index.d.ts +0 -8
- package/dist/index.js +0 -8
- package/global.d.ts +0 -2
- package/tsconfig.json +0 -22
- /package/dist/{alert → esm/alert}/index.d.ts +0 -0
- /package/dist/{alert → esm/alert}/index.js +0 -0
- /package/dist/{alert → esm/alert}/index.module.css +0 -0
- /package/dist/{datetime → esm/datetime}/index.d.ts +0 -0
- /package/dist/{datetime → esm/datetime}/index.js +0 -0
- /package/dist/{icon → esm/icon}/index.d.ts +0 -0
- /package/dist/{icon → esm/icon}/index.js +0 -0
package/package.json
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sydsoft/base",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.4.0",
|
|
5
5
|
"description": "",
|
|
6
|
-
"main": "dist/index.js",
|
|
7
|
-
"module": "dist/index.js",
|
|
8
|
-
"types": "dist/index.d.ts",
|
|
6
|
+
"main": "./dist/cjs/index.js",
|
|
7
|
+
"module": "./dist/esm/index.js",
|
|
8
|
+
"types": "./dist/esm/index.d.ts",
|
|
9
|
+
"files": [
|
|
10
|
+
"./dist/"
|
|
11
|
+
],
|
|
9
12
|
"scripts": {
|
|
13
|
+
"test": "npm run build && npm pack",
|
|
14
|
+
"copyCSS": "copyfiles -u 2 \"../@base/**/*.css\" dist/esm",
|
|
10
15
|
"build": "rm -rf ./dist && tsc && npm run copyCSS",
|
|
11
|
-
"copyCSS": "copyfiles -u 2 \"../@base/**/*.css\" dist/",
|
|
12
16
|
"publishNPM": "npm run build && npm version patch && npm version minor && npm publish --dry-run && npm publish --access public"
|
|
13
17
|
},
|
|
14
18
|
"publishConfig": {
|
package/dist/index.d.ts
DELETED
package/dist/index.js
DELETED
package/global.d.ts
DELETED
package/tsconfig.json
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"include": ["../@base", "global.d.ts"],
|
|
3
|
-
"exclude": ["./dist", "node_modules"],
|
|
4
|
-
"compilerOptions": {
|
|
5
|
-
"module": "esnext",
|
|
6
|
-
"lib": ["dom", "esnext"],
|
|
7
|
-
"importHelpers": true,
|
|
8
|
-
"declaration": true,
|
|
9
|
-
"sourceMap": false,
|
|
10
|
-
"rootDir": "../@base",
|
|
11
|
-
"outDir": "./dist",
|
|
12
|
-
"strict": true,
|
|
13
|
-
"noFallthroughCasesInSwitch": true,
|
|
14
|
-
"noUnusedLocals": true,
|
|
15
|
-
"noUnusedParameters": true,
|
|
16
|
-
"moduleResolution": "Node",
|
|
17
|
-
"jsx": "react-jsx",
|
|
18
|
-
"esModuleInterop": true,
|
|
19
|
-
"skipLibCheck": true,
|
|
20
|
-
"forceConsistentCasingInFileNames": true
|
|
21
|
-
}
|
|
22
|
-
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|