Skip to content

Commit 2640e16

Browse files
authored
Merge pull request sirius-tedarik#11 from sirius-tedarik/package-wizard
Package wizard
2 parents 7e14235 + 527320b commit 2640e16

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+2316
-280
lines changed

.moon/toolchain.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
$schema: "https://moonrepo.dev/schemas/toolchain.json"
22

33
bun:
4-
version: "1.1.18"
4+
version: "1.1.20"
55
dependencyVersionFormat: "workspace"
66
syncProjectWorkspaceDependencies: true
77

.prototools

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
bun = "1.1.18"
2-
moon = "1.25.2"
1+
bun = "1.1.20"
2+
moon = "1.27.2"
33

44
[plugins]
55
moon = "https://raw.githubusercontent.com/moonrepo/moon/master/proto-plugin.toml"

biome.jsonc

+15-2
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
"indentWidth": 2,
6666
"attributePosition": "auto"
6767
},
68-
"globals": ["$", "_", "Deno", "Bun", "JSX", "Sirutils", "React"],
68+
"globals": ["$", "_", "Deno", "Bun", "JSX", "Sirutils", "WizardRequest", "React"],
6969
"parser": {
7070
"unsafeParameterDecoratorsEnabled": true
7171
},
@@ -78,7 +78,7 @@
7878
},
7979
"overrides": [
8080
{
81-
"include": ["**/definitions/**/*.ts"],
81+
"include": ["**/definitions/**/*.ts", "**/_/**/*.ts"],
8282
"linter": {
8383
"rules": {
8484
"suspicious": {
@@ -99,6 +99,19 @@
9999
}
100100
}
101101
}
102+
},
103+
{
104+
"include": ["**/*.tsx"],
105+
"linter": {
106+
"rules": {
107+
"nursery": {
108+
"noReactSpecificProps": "off"
109+
},
110+
"style": {
111+
"noDefaultExport": "off"
112+
}
113+
}
114+
}
102115
}
103116
],
104117
"linter": {

bun.lockb

34.8 KB
Binary file not shown.

experiments/db/moon.yml

-35
This file was deleted.

experiments/db/schemas/_/content/blogs.ts

-34
This file was deleted.

experiments/db/schemas/_/users.ts

-14
This file was deleted.

experiments/db/src/definitions/db.ts

-9
This file was deleted.

experiments/db/src/definitions/index.ts

-2
This file was deleted.

experiments/db/src/definitions/plugins/cron.ts

-15
This file was deleted.

experiments/db/src/index.ts

Whitespace-only changes.

experiments/db/src/internal/logger.ts

-4
This file was deleted.

experiments/db/src/plugins/cron/plugin.ts

-22
This file was deleted.

experiments/db/src/tag.ts

-14
This file was deleted.

experiments/wizard-core/.prototools

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
moon = "1.27.2"

experiments/wizard-core/moon.yml

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
language: "typescript"
2+
type: "library"
3+
platform: "bun"
4+
5+
tasks:
6+
build:
7+
command: "bun x sirbuilder build -a"
8+
deps:
9+
- "~:schema"
10+
inputs:
11+
- "src/**/*"
12+
outputs:
13+
- "dist/**"
14+
schema:
15+
command: "bun x sirbuilder schema"
16+
deps:
17+
- builder:build
18+
- plugin-schema:build
19+
- core:build
20+
- seql:build
21+
- wizard:build
22+
- schema:build
23+
- toolbox:build
24+
- driver-mysql:build
25+
inputs:
26+
- "schemas/**/*"
27+
- "!schemas/_/**/*"
28+
outputs:
29+
- "schemas/_/**/*"
30+
watch:
31+
command: "bun --watch run src/index.ts"
32+
deps:
33+
- "~:build"
34+
inputs:
35+
- "schemas/**/*"
36+
- "!schemas/_/**/*"
37+
- "src/**/*"
38+
local: true

experiments/db/package.json experiments/wizard-core/package.json

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@sirutils/db",
2+
"name": "@sirutils/experiment-wizard-core",
33
"version": "0.0.1",
44

55
"type": "module",
@@ -16,6 +16,11 @@
1616
"@sirutils/builder-plugin-schema": "workspace:*"
1717
},
1818
"dependencies": {
19-
"@sirutils/core": "workspace:*"
19+
"@sirutils/core": "workspace:*",
20+
"@sirutils/seql": "workspace:*",
21+
"@sirutils/wizard": "workspace:*",
22+
"@sirutils/schema": "workspace:*",
23+
"@sirutils/toolbox": "workspace:*",
24+
"@sirutils/driver-mysql": "workspace:*"
2025
}
2126
}

0 commit comments

Comments
 (0)