@bleedingdev/modern-js-create 3.2.0-ultramodern.117 → 3.2.0-ultramodern.118
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/README.md +35 -125
- package/dist/cjs/create-package-root.cjs +1 -1
- package/dist/cjs/index.cjs +11 -602
- package/dist/cjs/locale/en.cjs +12 -19
- package/dist/cjs/locale/zh.cjs +12 -19
- package/dist/cjs/ultramodern-workspace.cjs +16 -19
- package/dist/esm/create-package-root.js +1 -1
- package/dist/esm/index.js +13 -603
- package/dist/esm/locale/en.js +12 -19
- package/dist/esm/locale/zh.js +12 -19
- package/dist/esm/ultramodern-workspace.js +17 -17
- package/dist/esm-node/create-package-root.js +1 -1
- package/dist/esm-node/index.js +13 -603
- package/dist/esm-node/locale/en.js +12 -19
- package/dist/esm-node/locale/zh.js +12 -19
- package/dist/esm-node/ultramodern-workspace.js +17 -17
- package/dist/types/locale/en.d.ts +0 -7
- package/dist/types/locale/index.d.ts +0 -14
- package/dist/types/locale/zh.d.ts +0 -7
- package/dist/types/ultramodern-workspace.d.ts +0 -1
- package/package.json +4 -5
- package/template-workspace/.github/workflows/ultramodern-workspace-gates.yml.handlebars +22 -6
- package/template-workspace/AGENTS.md +7 -3
- package/template-workspace/README.md.handlebars +5 -1
- package/template-workspace/lefthook.yml +18 -4
- package/template/.agents/skills-lock.json +0 -34
- package/template/.browserslistrc +0 -4
- package/template/.codex/hooks.json +0 -16
- package/template/.github/renovate.json +0 -53
- package/template/.github/workflows/ultramodern-gates.yml.handlebars +0 -54
- package/template/.gitignore.handlebars +0 -30
- package/template/.mise.toml.handlebars +0 -2
- package/template/.nvmrc +0 -2
- package/template/AGENTS.md +0 -23
- package/template/README.md +0 -111
- package/template/api/effect/index.ts.handlebars +0 -34
- package/template/api/lambda/hello.ts.handlebars +0 -6
- package/template/config/favicon.svg +0 -5
- package/template/config/public/assets/ultramodern-logo.svg +0 -6
- package/template/config/public/locales/cs/translation.json +0 -44
- package/template/config/public/locales/en/translation.json +0 -44
- package/template/lefthook.yml +0 -10
- package/template/modern.config.ts.handlebars +0 -78
- package/template/oxfmt.config.ts +0 -15
- package/template/oxlint.config.ts +0 -19
- package/template/package.json.handlebars +0 -69
- package/template/pnpm-workspace.yaml +0 -34
- package/template/postcss.config.mjs.handlebars +0 -6
- package/template/rstest.config.mts +0 -5
- package/template/scripts/bootstrap-agent-skills.mjs +0 -228
- package/template/scripts/check-i18n-strings.mjs +0 -3
- package/template/scripts/validate-ultramodern.mjs.handlebars +0 -658
- package/template/shared/effect/api.ts.handlebars +0 -17
- package/template/src/modern-app-env.d.ts +0 -3
- package/template/src/modern.runtime.ts.handlebars +0 -23
- package/template/src/routes/[lang]/page.tsx.handlebars +0 -209
- package/template/src/routes/index.css.handlebars +0 -266
- package/template/src/routes/layout.tsx.handlebars +0 -10
- package/template/tailwind.config.ts.handlebars +0 -10
- package/template/tests/tsconfig.json +0 -7
- package/template/tests/ultramodern.contract.test.ts.handlebars +0 -163
- package/template/tsconfig.json +0 -121
package/template/tsconfig.json
DELETED
|
@@ -1,121 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "@modern-js/tsconfig/base",
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"declaration": false,
|
|
5
|
-
"jsx": "preserve",
|
|
6
|
-
"target": "ESNext",
|
|
7
|
-
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
8
|
-
"module": "preserve",
|
|
9
|
-
"moduleResolution": "Bundler",
|
|
10
|
-
"moduleDetection": "force",
|
|
11
|
-
"isolatedModules": true,
|
|
12
|
-
"verbatimModuleSyntax": true,
|
|
13
|
-
"noEmit": true,
|
|
14
|
-
"allowJs": true,
|
|
15
|
-
"allowImportingTsExtensions": true,
|
|
16
|
-
"resolveJsonModule": true,
|
|
17
|
-
"esModuleInterop": true,
|
|
18
|
-
"skipLibCheck": true,
|
|
19
|
-
"strict": true,
|
|
20
|
-
"noUncheckedIndexedAccess": true,
|
|
21
|
-
"exactOptionalPropertyTypes": true,
|
|
22
|
-
"noImplicitOverride": true,
|
|
23
|
-
"noFallthroughCasesInSwitch": true,
|
|
24
|
-
"noPropertyAccessFromIndexSignature": true,
|
|
25
|
-
"noImplicitReturns": true,
|
|
26
|
-
"paths": {
|
|
27
|
-
"@/*": ["./src/*"],
|
|
28
|
-
"@api/*": ["./api/*"],
|
|
29
|
-
"@shared/*": ["./shared/*"]
|
|
30
|
-
},
|
|
31
|
-
"rootDir": ".",
|
|
32
|
-
"plugins": [
|
|
33
|
-
{
|
|
34
|
-
"name": "@effect/language-service",
|
|
35
|
-
"diagnostics": true,
|
|
36
|
-
"includeSuggestionsInTsc": true,
|
|
37
|
-
"ignoreEffectSuggestionsInTscExitCode": false,
|
|
38
|
-
"ignoreEffectWarningsInTscExitCode": false,
|
|
39
|
-
"ignoreEffectErrorsInTscExitCode": false,
|
|
40
|
-
"skipDisabledOptimization": true,
|
|
41
|
-
"diagnosticSeverity": {
|
|
42
|
-
"anyUnknownInErrorContext": "error",
|
|
43
|
-
"classSelfMismatch": "error",
|
|
44
|
-
"duplicatePackage": "error",
|
|
45
|
-
"effectFnImplicitAny": "error",
|
|
46
|
-
"floatingEffect": "error",
|
|
47
|
-
"genericEffectServices": "error",
|
|
48
|
-
"missingEffectContext": "error",
|
|
49
|
-
"missingEffectError": "error",
|
|
50
|
-
"missingLayerContext": "error",
|
|
51
|
-
"missingReturnYieldStar": "error",
|
|
52
|
-
"missingStarInYieldEffectGen": "error",
|
|
53
|
-
"nonObjectEffectServiceType": "error",
|
|
54
|
-
"outdatedApi": "error",
|
|
55
|
-
"overriddenSchemaConstructor": "error",
|
|
56
|
-
"catchUnfailableEffect": "error",
|
|
57
|
-
"effectFnIife": "error",
|
|
58
|
-
"effectGenUsesAdapter": "error",
|
|
59
|
-
"effectInFailure": "error",
|
|
60
|
-
"effectInVoidSuccess": "error",
|
|
61
|
-
"globalErrorInEffectCatch": "error",
|
|
62
|
-
"globalErrorInEffectFailure": "error",
|
|
63
|
-
"layerMergeAllWithDependencies": "error",
|
|
64
|
-
"lazyPromiseInEffectSync": "error",
|
|
65
|
-
"leakingRequirements": "error",
|
|
66
|
-
"multipleEffectProvide": "error",
|
|
67
|
-
"returnEffectInGen": "error",
|
|
68
|
-
"runEffectInsideEffect": "error",
|
|
69
|
-
"schemaSyncInEffect": "error",
|
|
70
|
-
"scopeInLayerEffect": "error",
|
|
71
|
-
"strictEffectProvide": "error",
|
|
72
|
-
"tryCatchInEffectGen": "error",
|
|
73
|
-
"unknownInEffectCatch": "error",
|
|
74
|
-
"asyncFunction": "error",
|
|
75
|
-
"cryptoRandomUUID": "error",
|
|
76
|
-
"cryptoRandomUUIDInEffect": "error",
|
|
77
|
-
"extendsNativeError": "error",
|
|
78
|
-
"globalConsole": "error",
|
|
79
|
-
"globalConsoleInEffect": "error",
|
|
80
|
-
"globalDate": "error",
|
|
81
|
-
"globalDateInEffect": "error",
|
|
82
|
-
"globalFetch": "error",
|
|
83
|
-
"globalFetchInEffect": "error",
|
|
84
|
-
"globalRandom": "error",
|
|
85
|
-
"globalRandomInEffect": "error",
|
|
86
|
-
"globalTimers": "error",
|
|
87
|
-
"globalTimersInEffect": "error",
|
|
88
|
-
"instanceOfSchema": "error",
|
|
89
|
-
"newPromise": "error",
|
|
90
|
-
"nodeBuiltinImport": "error",
|
|
91
|
-
"preferSchemaOverJson": "error",
|
|
92
|
-
"processEnv": "error",
|
|
93
|
-
"processEnvInEffect": "error",
|
|
94
|
-
"unsafeEffectTypeAssertion": "error",
|
|
95
|
-
"catchAllToMapError": "error",
|
|
96
|
-
"deterministicKeys": "error",
|
|
97
|
-
"effectDoNotation": "error",
|
|
98
|
-
"effectFnOpportunity": "error",
|
|
99
|
-
"effectMapFlatten": "error",
|
|
100
|
-
"effectMapVoid": "error",
|
|
101
|
-
"effectSucceedWithVoid": "error",
|
|
102
|
-
"missedPipeableOpportunity": "error",
|
|
103
|
-
"missingEffectServiceDependency": "error",
|
|
104
|
-
"nestedEffectGenYield": "error",
|
|
105
|
-
"redundantSchemaTagIdentifier": "error",
|
|
106
|
-
"schemaStructWithTag": "error",
|
|
107
|
-
"schemaUnionOfLiterals": "error",
|
|
108
|
-
"serviceNotAsClass": "error",
|
|
109
|
-
"strictBooleanExpressions": "error",
|
|
110
|
-
"unnecessaryArrowBlock": "error",
|
|
111
|
-
"unnecessaryEffectGen": "error",
|
|
112
|
-
"unnecessaryFailYieldableError": "error",
|
|
113
|
-
"unnecessaryPipe": "error",
|
|
114
|
-
"unnecessaryPipeChain": "error"
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
]
|
|
118
|
-
},
|
|
119
|
-
"include": ["src", "api", "shared", "config", "modern.config.ts", "server"],
|
|
120
|
-
"exclude": ["**/node_modules"]
|
|
121
|
-
}
|