create-conformal 0.10.0 → 0.11.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 +14 -0
- package/package.json +3 -2
- package/package.json.bak +3 -3
- package/src/template.test.ts +3 -3
- package/template/.github/workflows/ci.yml +1 -1
- package/template/.github/workflows/release.yml +1 -1
- package/template/package.json +2 -1
- package/template/web/eslint-config-custom/package.json +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# create-conformal
|
|
2
2
|
|
|
3
|
+
## 0.11.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- b0815e8: Use bun as a dev server
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 37bd8c6: Better versioning for eslint-custom-config
|
|
12
|
+
- 87e9547: Use macos-15 github runner
|
|
13
|
+
- Updated dependencies [37bd8c6]
|
|
14
|
+
- Updated dependencies [b0815e8]
|
|
15
|
+
- @conformal/create-plugin@0.11.0
|
|
16
|
+
|
|
3
17
|
## 0.10.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"dependencies": {
|
|
3
3
|
"@conformal/stamp": "^0.4.1",
|
|
4
|
-
"@conformal/create-plugin": "^0.
|
|
4
|
+
"@conformal/create-plugin": "^0.11.0",
|
|
5
5
|
"@commander-js/extra-typings": "^12.1.0",
|
|
6
6
|
"commander": "^12.1.0"
|
|
7
7
|
},
|
|
8
8
|
"name": "create-conformal",
|
|
9
|
-
"version": "0.
|
|
9
|
+
"version": "0.11.0",
|
|
10
10
|
"description": "Project generator script for conformal projects",
|
|
11
11
|
"homepage": "https://russellmcc.github.io/conformal",
|
|
12
12
|
"bugs": "https://github.com/russellmcc/conformal/issues",
|
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
"type": "module",
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"tmp-promise": "catalog:",
|
|
24
|
+
"eslint-config-custom": "workspace:0.0.0",
|
|
24
25
|
"zod": "catalog:"
|
|
25
26
|
}
|
|
26
27
|
}
|
package/package.json.bak
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"dependencies": {
|
|
3
3
|
"@conformal/stamp": "^0.4.1",
|
|
4
|
-
"@conformal/create-plugin": "^0.
|
|
4
|
+
"@conformal/create-plugin": "^0.11.0",
|
|
5
5
|
"@commander-js/extra-typings": "^12.1.0",
|
|
6
6
|
"commander": "^12.1.0"
|
|
7
7
|
},
|
|
8
8
|
"name": "create-conformal",
|
|
9
|
-
"version": "0.
|
|
9
|
+
"version": "0.11.0",
|
|
10
10
|
"description": "Project generator script for conformal projects",
|
|
11
11
|
"homepage": "https://russellmcc.github.io/conformal",
|
|
12
12
|
"bugs": "https://github.com/russellmcc/conformal/issues",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"type": "module",
|
|
22
22
|
"devDependencies": {
|
|
23
23
|
"tmp-promise": "catalog:",
|
|
24
|
-
"eslint-config-custom": "workspace
|
|
24
|
+
"eslint-config-custom": "workspace:0.0.0",
|
|
25
25
|
"zod": "catalog:"
|
|
26
26
|
}
|
|
27
27
|
}
|
package/src/template.test.ts
CHANGED
|
@@ -99,7 +99,7 @@ describe("create-conformal template", () => {
|
|
|
99
99
|
};
|
|
100
100
|
|
|
101
101
|
// Note that bun skips dependencies when installing packages from local paths :'(,
|
|
102
|
-
// so instead, we use `
|
|
102
|
+
// so instead, we use `bun pm pack` to create tarballs.
|
|
103
103
|
|
|
104
104
|
const localDependencies = [
|
|
105
105
|
"scripts",
|
|
@@ -108,7 +108,7 @@ describe("create-conformal template", () => {
|
|
|
108
108
|
"create-plugin",
|
|
109
109
|
];
|
|
110
110
|
for (const dep of localDependencies) {
|
|
111
|
-
await $`
|
|
111
|
+
await $`bun pm pack --destination=${tmpDir}`.cwd(
|
|
112
112
|
path.join(workspacePath, "web", dep),
|
|
113
113
|
);
|
|
114
114
|
const tgzGlob = new Bun.Glob(`conformal-${dep}-*.tgz`);
|
|
@@ -147,7 +147,7 @@ describe("create-conformal template", () => {
|
|
|
147
147
|
// Remove the unfixed tarball
|
|
148
148
|
await unlink(tgzPath);
|
|
149
149
|
// Re-pack the tarball
|
|
150
|
-
await $`
|
|
150
|
+
await $`bun pm pack --destination=${tmpDir}`.cwd(extractDir);
|
|
151
151
|
|
|
152
152
|
const rewiredTgzPath = path.join(
|
|
153
153
|
tmpDir,
|
package/template/package.json
CHANGED