@cnc-ti/layout-basic 8.0.0 → 8.1.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/.turbo/turbo-build.log +4 -4
- package/CHANGELOG.md +6 -0
- package/package.json +1 -1
- package/tsconfig.json +23 -3
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
> @cnc-ti/layout-basic@8.
|
|
3
|
+
> @cnc-ti/layout-basic@8.1.0 build
|
|
4
4
|
> tsup src/index.ts --format esm,cjs --dts --external react --minify
|
|
5
5
|
|
|
6
6
|
[1G[0K[34mCLI[39m Building entry: src/index.ts
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
DTS Build start
|
|
13
13
|
[32mCJS[39m [1mdist/index.css [22m[32m19.17 KB[39m
|
|
14
14
|
[32mCJS[39m [1mdist/index.js [22m[32m554.76 KB[39m
|
|
15
|
-
[32mCJS[39m ⚡️ Build success in
|
|
15
|
+
[32mCJS[39m ⚡️ Build success in 868ms
|
|
16
16
|
[32mESM[39m [1mdist/index.css [22m[32m19.17 KB[39m
|
|
17
17
|
[32mESM[39m [1mdist/index.mjs [22m[32m552.94 KB[39m
|
|
18
|
-
[32mESM[39m ⚡️ Build success in
|
|
19
|
-
DTS ⚡️ Build success in
|
|
18
|
+
[32mESM[39m ⚡️ Build success in 869ms
|
|
19
|
+
DTS ⚡️ Build success in 1612ms
|
|
20
20
|
DTS dist/index.d.mts 7.92 KB
|
|
21
21
|
DTS dist/index.d.ts 7.92 KB
|
|
22
22
|
[1G[0K⠙[1G[0K
|
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/tsconfig.json
CHANGED
|
@@ -1,4 +1,24 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
"
|
|
4
|
-
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"composite": false,
|
|
4
|
+
"declaration": true,
|
|
5
|
+
"declarationMap": true,
|
|
6
|
+
"esModuleInterop": true,
|
|
7
|
+
"forceConsistentCasingInFileNames": true,
|
|
8
|
+
"inlineSources": false,
|
|
9
|
+
"isolatedModules": true,
|
|
10
|
+
"moduleResolution": "node",
|
|
11
|
+
"noUnusedLocals": false,
|
|
12
|
+
"noUnusedParameters": false,
|
|
13
|
+
"preserveWatchOutput": true,
|
|
14
|
+
"skipLibCheck": true,
|
|
15
|
+
"strict": true,
|
|
16
|
+
"jsx": "react-jsx",
|
|
17
|
+
"jsxImportSource": "react",
|
|
18
|
+
"lib": ["dom", "ES2015"],
|
|
19
|
+
"module": "ESNext",
|
|
20
|
+
"target": "es6"
|
|
21
|
+
},
|
|
22
|
+
"exclude": ["node_modules"],
|
|
23
|
+
"include": ["src"]
|
|
24
|
+
}
|