@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.
@@ -1,6 +1,6 @@
1
1
 
2
2
  
3
- > @cnc-ti/layout-basic@8.0.0 build
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
  CLI Building entry: src/index.ts
@@ -12,11 +12,11 @@
12
12
  DTS Build start
13
13
  CJS dist/index.css 19.17 KB
14
14
  CJS dist/index.js 554.76 KB
15
- CJS ⚡️ Build success in 1207ms
15
+ CJS ⚡️ Build success in 868ms
16
16
  ESM dist/index.css 19.17 KB
17
17
  ESM dist/index.mjs 552.94 KB
18
- ESM ⚡️ Build success in 1207ms
19
- DTS ⚡️ Build success in 1781ms
18
+ ESM ⚡️ 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
  ⠙
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @cnc-ti/layout-basic
2
2
 
3
+ ## 8.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Udpate do update do update
8
+
3
9
  ## 8.0.0
4
10
 
5
11
  ### Major Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cnc-ti/layout-basic",
3
- "version": "8.0.0",
3
+ "version": "8.1.0",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
package/tsconfig.json CHANGED
@@ -1,4 +1,24 @@
1
1
  {
2
- "extends": "@cnc-ti/ts-config/react.json",
3
- "include": ["src"]
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
+ }