@corva/create-app 0.117.0 → 0.119.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/README.md +5 -5
- package/common/python/Makefile +8 -5
- package/common/python/pyproject.toml +25 -0
- package/common/python/uv.lock +381 -0
- package/lib/commands/create.js +5 -5
- package/lib/constants/cli.js +5 -8
- package/lib/constants/manifest.js +3 -3
- package/lib/constants/package.js +43 -9
- package/lib/flows/lib/manifest.js +1 -1
- package/lib/flows/steps/zip-file-list-resolve.js +1 -1
- package/lib/helpers/resolve-app-runtime.js +28 -14
- package/lib/helpers/utils.js +6 -2
- package/lib/main.js +2 -3
- package/package.json +8 -8
- package/templates/ui/javascript/AGENTS.md +56 -53
- package/templates/ui/javascript/src/App.completion.js +1 -1
- package/templates/ui/javascript/src/App.drilling.js +1 -1
- package/templates/ui/typescript/AGENTS.md +58 -53
- package/templates/ui/typescript/src/App.completion.tsx +1 -1
- package/templates/ui/typescript/src/App.drilling.tsx +1 -1
- package/templates/ui/typescript/src/custom.d.ts +10 -0
- package/common/python/requirements.txt +0 -2
- /package/templates/ui/javascript/src/{App.css → App.scss} +0 -0
- /package/templates/ui/typescript/src/{App.css → App.scss} +0 -0
|
@@ -4,7 +4,7 @@ import { useAppCommons } from '@corva/ui/effects';
|
|
|
4
4
|
import { DEFAULT_SETTINGS } from './constants';
|
|
5
5
|
import logo from './assets/logo.svg';
|
|
6
6
|
|
|
7
|
-
import styles from './App.
|
|
7
|
+
import styles from './App.scss';
|
|
8
8
|
|
|
9
9
|
const App = () => {
|
|
10
10
|
const { appKey, rig, well, appSettings } = useAppCommons();
|
|
@@ -7,3 +7,13 @@ declare module '*.css' {
|
|
|
7
7
|
const content: Record<string, string>;
|
|
8
8
|
export default content;
|
|
9
9
|
}
|
|
10
|
+
|
|
11
|
+
declare module '*.scss' {
|
|
12
|
+
const content: Record<string, string>;
|
|
13
|
+
export default content;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
declare module '*.sass' {
|
|
17
|
+
const content: Record<string, string>;
|
|
18
|
+
export default content;
|
|
19
|
+
}
|
|
File without changes
|
|
File without changes
|