Skip to content

Commit 69d15e1

Browse files
committed
feat(common) new bundle
feat(common) new bundle
1 parent 26da6d4 commit 69d15e1

File tree

8 files changed

+3576
-6889
lines changed

8 files changed

+3576
-6889
lines changed

.config/husky/pre-commit

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/sh
22
. "$(dirname "$0")/_/husky.sh"
33

4-
yarn commit staged
4+
yarn commit staged

.pnp.cjs

+1,367-3,256
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.pnp.loader.mjs

+53-33
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.yarn/releases/yarn-remote.cjs

100644100755
+1,306-1,323
Large diffs are not rendered by default.

package.json

+5-11
Original file line numberDiff line numberDiff line change
@@ -14,26 +14,20 @@
1414
"@vanilla-extract/integration@npm:^7.1.7": "patch:@vanilla-extract/integration@npm%3A7.1.7#~/.yarn/patches/@vanilla-extract-integration-npm-7.1.7-cf020c7449.patch"
1515
},
1616
"devDependencies": {
17-
"@atls/code-service": "0.1.9",
18-
"@atls/config-eslint": "0.0.12",
19-
"@atls/config-jest": "0.0.17",
20-
"@atls/schematics": "0.0.16",
21-
"@jest/core": "29.7.0",
22-
"@types/eslint": "8.56.2",
23-
"@types/glob": "8.1.0",
17+
"@atls/code-runtime": "1.1.0",
2418
"@types/jest": "29.5.11",
2519
"@types/node": "20.11.5",
26-
"eslint": "8.57.0",
2720
"jest-environment-jsdom": "29.7.0",
28-
"typescript": "5.2.2"
21+
"typescript": "5.4.2"
2922
},
30-
"packageManager": "yarn@4.0.2",
23+
"packageManager": "yarn@4.4.1",
3124
"tools": {
3225
"schematic": {
3326
"collection": "@atls/schematics",
3427
"schematic": "project",
3528
"type": "libraries",
3629
"migration": "1653826505519"
3730
}
38-
}
31+
},
32+
"typecheckSkipLibCheck": true
3933
}

project.types.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/// <reference types="@atls/code-runtime/types" />

tsconfig.json

+13-5
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111
"module": "NodeNext",
1212
"moduleResolution": "NodeNext",
1313
"noFallthroughCasesInSwitch": true,
14-
"noImplicitAny": false,
15-
"noImplicitReturns": false,
16-
"noImplicitThis": false,
14+
"noImplicitAny": true,
15+
"noImplicitReturns": true,
16+
"noImplicitThis": true,
1717
"noUnusedLocals": false,
1818
"noUnusedParameters": false,
1919
"skipLibCheck": true,
@@ -24,7 +24,15 @@
2424
"sourceMap": false,
2525
"target": "es2022",
2626
"jsx": "react",
27-
"outDir": "./dist"
27+
"outDir": "./dist",
28+
"strictPropertyInitialization": false
2829
},
29-
"include": ["generators/**/*", "ui-admin/**/*", "ui-parts/**/*", "ui/**/*", "utils/**/*"]
30+
"include": [
31+
"project.types.d.ts",
32+
"generators/**/*",
33+
"ui-admin/**/*",
34+
"ui-parts/**/*",
35+
"ui/**/*",
36+
"utils/**/*"
37+
]
3038
}

0 commit comments

Comments
 (0)