@tailor-platform/create-sdk 1.30.0 → 1.32.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/CHANGELOG.md +4 -0
- package/README.md +3 -1
- package/dist/index.js +4 -2
- package/package.json +3 -3
- package/templates/executor/package.json +3 -3
- package/templates/generators/package.json +3 -3
- package/templates/hello-world/README.md +2 -0
- package/templates/hello-world/package.json +3 -2
- package/templates/inventory-management/README.md +2 -0
- package/templates/inventory-management/package.json +3 -3
- package/templates/multi-application/package.json +2 -2
- package/templates/resolver/package.json +3 -3
- package/templates/static-web-site/package.json +3 -3
- package/templates/tailordb/package.json +3 -3
- package/templates/workflow/package.json +3 -3
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -10,6 +10,8 @@ npm create @tailor-platform/sdk -- [OPTIONS] [NAME]
|
|
|
10
10
|
yarn create @tailor-platform/sdk [OPTIONS] [NAME]
|
|
11
11
|
# OR
|
|
12
12
|
pnpm create @tailor-platform/sdk [OPTIONS] [NAME]
|
|
13
|
+
# OR
|
|
14
|
+
bun create @tailor-platform/sdk [OPTIONS] [NAME]
|
|
13
15
|
```
|
|
14
16
|
|
|
15
17
|
Note: npm 7+ requires `--` before create-sdk options (for example, `--template`).
|
|
@@ -84,7 +86,7 @@ This tool will:
|
|
|
84
86
|
|
|
85
87
|
### Note
|
|
86
88
|
|
|
87
|
-
- If none of the supported package managers (npm, yarn, pnpm) are found, dependency installation will be skipped.
|
|
89
|
+
- If none of the supported package managers (npm, yarn, pnpm, bun) are found, dependency installation will be skipped.
|
|
88
90
|
- If the project already exists within a git repository, git initialization will be skipped.
|
|
89
91
|
|
|
90
92
|
## Documentation
|
package/dist/index.js
CHANGED
|
@@ -101,7 +101,8 @@ const detectPackageManager = () => {
|
|
|
101
101
|
const availablePMs = [
|
|
102
102
|
"npm",
|
|
103
103
|
"yarn",
|
|
104
|
-
"pnpm"
|
|
104
|
+
"pnpm",
|
|
105
|
+
"bun"
|
|
105
106
|
];
|
|
106
107
|
const userAgent = process.env.npm_config_user_agent;
|
|
107
108
|
if (!userAgent) return;
|
|
@@ -119,7 +120,8 @@ const isGitRepository = async () => {
|
|
|
119
120
|
};
|
|
120
121
|
const initProject = async () => {
|
|
121
122
|
const packageManager = detectPackageManager();
|
|
122
|
-
if (
|
|
123
|
+
if (process.env.CREATE_SDK_NO_INSTALL) log.info("ℹ️ Skipping dependency installation (CREATE_SDK_NO_INSTALL is set)");
|
|
124
|
+
else if (packageManager) {
|
|
123
125
|
const s = spinner();
|
|
124
126
|
s.start(`📦 Installing dependencies with ${packageManager}...`);
|
|
125
127
|
await execa(packageManager, ["install"]);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tailor-platform/create-sdk",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.32.0",
|
|
4
4
|
"description": "A CLI tool to quickly create a new Tailor Platform SDK project",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"eslint": "9.39.4",
|
|
32
32
|
"eslint-plugin-oxlint": "1.55.0",
|
|
33
33
|
"oxlint": "1.55.0",
|
|
34
|
-
"tsdown": "0.21.
|
|
34
|
+
"tsdown": "0.21.4",
|
|
35
35
|
"typescript": "5.9.3",
|
|
36
|
-
"typescript-eslint": "8.57.
|
|
36
|
+
"typescript-eslint": "8.57.1"
|
|
37
37
|
},
|
|
38
38
|
"scripts": {
|
|
39
39
|
"build": "tsdown",
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"@eslint/js": "9.39.4",
|
|
18
|
-
"@tailor-platform/function-types": "0.8.
|
|
19
|
-
"@tailor-platform/sdk": "1.
|
|
18
|
+
"@tailor-platform/function-types": "0.8.3",
|
|
19
|
+
"@tailor-platform/sdk": "1.32.0",
|
|
20
20
|
"@types/node": "24.12.0",
|
|
21
21
|
"eslint": "9.39.4",
|
|
22
22
|
"eslint-plugin-oxlint": "1.55.0",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"oxlint": "1.55.0",
|
|
25
25
|
"oxlint-tsgolint": "0.16.0",
|
|
26
26
|
"typescript": "5.9.3",
|
|
27
|
-
"typescript-eslint": "8.57.
|
|
27
|
+
"typescript-eslint": "8.57.1",
|
|
28
28
|
"vitest": "4.1.0"
|
|
29
29
|
}
|
|
30
30
|
}
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"@eslint/js": "9.39.4",
|
|
18
|
-
"@tailor-platform/function-types": "0.8.
|
|
19
|
-
"@tailor-platform/sdk": "1.
|
|
18
|
+
"@tailor-platform/function-types": "0.8.3",
|
|
19
|
+
"@tailor-platform/sdk": "1.32.0",
|
|
20
20
|
"@types/node": "24.12.0",
|
|
21
21
|
"eslint": "9.39.4",
|
|
22
22
|
"eslint-plugin-oxlint": "1.55.0",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"oxlint": "1.55.0",
|
|
25
25
|
"oxlint-tsgolint": "0.16.0",
|
|
26
26
|
"typescript": "5.9.3",
|
|
27
|
-
"typescript-eslint": "8.57.
|
|
27
|
+
"typescript-eslint": "8.57.1",
|
|
28
28
|
"vitest": "4.1.0"
|
|
29
29
|
}
|
|
30
30
|
}
|
|
@@ -14,6 +14,7 @@ npx tailor-sdk workspace create --name <workspace-name> --region <workspace-regi
|
|
|
14
14
|
npx tailor-sdk workspace list
|
|
15
15
|
# For yarn: yarn tailor-sdk <command>
|
|
16
16
|
# For pnpm: pnpm tailor-sdk <command>
|
|
17
|
+
# For bun: bun tailor-sdk <command>
|
|
17
18
|
|
|
18
19
|
# OR
|
|
19
20
|
# Create a new workspace using Tailor Platform Console
|
|
@@ -26,6 +27,7 @@ npx tailor-sdk workspace list
|
|
|
26
27
|
npm run deploy -- --workspace-id <your-workspace-id>
|
|
27
28
|
# For yarn: yarn run deploy --workspace-id <your-workspace-id>
|
|
28
29
|
# For pnpm: pnpm run deploy --workspace-id <your-workspace-id>
|
|
30
|
+
# For bun: bun run deploy --workspace-id <your-workspace-id>
|
|
29
31
|
```
|
|
30
32
|
|
|
31
33
|
3. Open [Tailor Platform Console](https://console.tailor.tech/) and open GraphQL Playground.
|
|
@@ -13,7 +13,8 @@
|
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@eslint/js": "9.39.4",
|
|
16
|
-
"@tailor-platform/
|
|
16
|
+
"@tailor-platform/function-types": "0.8.2",
|
|
17
|
+
"@tailor-platform/sdk": "1.32.0",
|
|
17
18
|
"@types/node": "24.12.0",
|
|
18
19
|
"eslint": "9.39.4",
|
|
19
20
|
"eslint-plugin-oxlint": "1.55.0",
|
|
@@ -21,6 +22,6 @@
|
|
|
21
22
|
"oxlint": "1.55.0",
|
|
22
23
|
"oxlint-tsgolint": "0.16.0",
|
|
23
24
|
"typescript": "5.9.3",
|
|
24
|
-
"typescript-eslint": "8.57.
|
|
25
|
+
"typescript-eslint": "8.57.1"
|
|
25
26
|
}
|
|
26
27
|
}
|
|
@@ -14,6 +14,7 @@ npx tailor-sdk workspace create --name <workspace-name> --region <workspace-regi
|
|
|
14
14
|
npx tailor-sdk workspace list
|
|
15
15
|
# For yarn: yarn tailor-sdk <command>
|
|
16
16
|
# For pnpm: pnpm tailor-sdk <command>
|
|
17
|
+
# For bun: bun tailor-sdk <command>
|
|
17
18
|
|
|
18
19
|
# OR
|
|
19
20
|
# Create a new workspace using Tailor Platform Console
|
|
@@ -26,6 +27,7 @@ npx tailor-sdk workspace list
|
|
|
26
27
|
npm run deploy -- --workspace-id <your-workspace-id>
|
|
27
28
|
# For yarn: yarn run deploy --workspace-id <your-workspace-id>
|
|
28
29
|
# For pnpm: pnpm run deploy --workspace-id <your-workspace-id>
|
|
30
|
+
# For bun: bun run deploy --workspace-id <your-workspace-id>
|
|
29
31
|
```
|
|
30
32
|
|
|
31
33
|
3. Open [Tailor Platform Console](https://console.tailor.tech/) and open GraphQL Playground.
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@eslint/js": "9.39.4",
|
|
16
|
-
"@tailor-platform/function-types": "0.8.
|
|
17
|
-
"@tailor-platform/sdk": "1.
|
|
16
|
+
"@tailor-platform/function-types": "0.8.3",
|
|
17
|
+
"@tailor-platform/sdk": "1.32.0",
|
|
18
18
|
"@types/node": "24.12.0",
|
|
19
19
|
"eslint": "9.39.4",
|
|
20
20
|
"eslint-plugin-oxlint": "1.55.0",
|
|
@@ -22,6 +22,6 @@
|
|
|
22
22
|
"oxlint": "1.55.0",
|
|
23
23
|
"oxlint-tsgolint": "0.16.0",
|
|
24
24
|
"typescript": "5.9.3",
|
|
25
|
-
"typescript-eslint": "8.57.
|
|
25
|
+
"typescript-eslint": "8.57.1"
|
|
26
26
|
}
|
|
27
27
|
}
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
16
|
"@eslint/js": "9.39.4",
|
|
17
|
-
"@tailor-platform/sdk": "1.
|
|
17
|
+
"@tailor-platform/sdk": "1.32.0",
|
|
18
18
|
"@types/node": "24.12.0",
|
|
19
19
|
"eslint": "9.39.4",
|
|
20
20
|
"eslint-plugin-oxlint": "1.55.0",
|
|
@@ -22,6 +22,6 @@
|
|
|
22
22
|
"oxlint": "1.55.0",
|
|
23
23
|
"oxlint-tsgolint": "0.16.0",
|
|
24
24
|
"typescript": "5.9.3",
|
|
25
|
-
"typescript-eslint": "8.57.
|
|
25
|
+
"typescript-eslint": "8.57.1"
|
|
26
26
|
}
|
|
27
27
|
}
|
|
@@ -17,8 +17,8 @@
|
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
19
|
"@eslint/js": "9.39.4",
|
|
20
|
-
"@tailor-platform/function-types": "0.8.
|
|
21
|
-
"@tailor-platform/sdk": "1.
|
|
20
|
+
"@tailor-platform/function-types": "0.8.3",
|
|
21
|
+
"@tailor-platform/sdk": "1.32.0",
|
|
22
22
|
"@types/node": "24.12.0",
|
|
23
23
|
"eslint": "9.39.4",
|
|
24
24
|
"eslint-plugin-oxlint": "1.55.0",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"oxlint": "1.55.0",
|
|
27
27
|
"oxlint-tsgolint": "0.16.0",
|
|
28
28
|
"typescript": "5.9.3",
|
|
29
|
-
"typescript-eslint": "8.57.
|
|
29
|
+
"typescript-eslint": "8.57.1",
|
|
30
30
|
"vitest": "4.1.0"
|
|
31
31
|
}
|
|
32
32
|
}
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@eslint/js": "9.39.4",
|
|
16
|
-
"@tailor-platform/function-types": "0.8.
|
|
17
|
-
"@tailor-platform/sdk": "1.
|
|
16
|
+
"@tailor-platform/function-types": "0.8.3",
|
|
17
|
+
"@tailor-platform/sdk": "1.32.0",
|
|
18
18
|
"@types/node": "24.12.0",
|
|
19
19
|
"eslint": "9.39.4",
|
|
20
20
|
"eslint-plugin-oxlint": "1.55.0",
|
|
@@ -22,6 +22,6 @@
|
|
|
22
22
|
"oxlint": "1.55.0",
|
|
23
23
|
"oxlint-tsgolint": "0.16.0",
|
|
24
24
|
"typescript": "5.9.3",
|
|
25
|
-
"typescript-eslint": "8.57.
|
|
25
|
+
"typescript-eslint": "8.57.1"
|
|
26
26
|
}
|
|
27
27
|
}
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
17
|
"@eslint/js": "9.39.4",
|
|
18
|
-
"@tailor-platform/function-types": "0.8.
|
|
19
|
-
"@tailor-platform/sdk": "1.
|
|
18
|
+
"@tailor-platform/function-types": "0.8.3",
|
|
19
|
+
"@tailor-platform/sdk": "1.32.0",
|
|
20
20
|
"@types/node": "24.12.0",
|
|
21
21
|
"eslint": "9.39.4",
|
|
22
22
|
"eslint-plugin-oxlint": "1.55.0",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"oxlint": "1.55.0",
|
|
25
25
|
"oxlint-tsgolint": "0.16.0",
|
|
26
26
|
"typescript": "5.9.3",
|
|
27
|
-
"typescript-eslint": "8.57.
|
|
27
|
+
"typescript-eslint": "8.57.1",
|
|
28
28
|
"vitest": "4.1.0"
|
|
29
29
|
}
|
|
30
30
|
}
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@eslint/js": "9.39.4",
|
|
21
|
-
"@tailor-platform/function-types": "0.8.
|
|
22
|
-
"@tailor-platform/sdk": "1.
|
|
21
|
+
"@tailor-platform/function-types": "0.8.3",
|
|
22
|
+
"@tailor-platform/sdk": "1.32.0",
|
|
23
23
|
"@types/node": "24.12.0",
|
|
24
24
|
"eslint": "9.39.4",
|
|
25
25
|
"eslint-plugin-oxlint": "1.55.0",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"oxlint": "1.55.0",
|
|
30
30
|
"oxlint-tsgolint": "0.16.0",
|
|
31
31
|
"typescript": "5.9.3",
|
|
32
|
-
"typescript-eslint": "8.57.
|
|
32
|
+
"typescript-eslint": "8.57.1",
|
|
33
33
|
"vitest": "4.1.0"
|
|
34
34
|
}
|
|
35
35
|
}
|