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 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.10.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.10.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.10.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.10.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
  }
@@ -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 `npm pack` to create tarballs.
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 $`npm pack --pack-destination=${tmpDir}`.cwd(
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 $`npm pack --pack-destination=${tmpDir}`.cwd(extractDir);
150
+ await $`bun pm pack --destination=${tmpDir}`.cwd(extractDir);
151
151
 
152
152
  const rewiredTgzPath = path.join(
153
153
  tmpDir,
@@ -8,7 +8,7 @@ on:
8
8
 
9
9
  jobs:
10
10
  ci:
11
- runs-on: macos-14
11
+ runs-on: macos-15
12
12
  steps:
13
13
  - uses: actions/checkout@v4
14
14
  with:
@@ -10,7 +10,7 @@ jobs:
10
10
  release:
11
11
  permissions:
12
12
  contents: write
13
- runs-on: macos-14
13
+ runs-on: macos-15
14
14
  steps:
15
15
  - uses: actions/checkout@v4
16
16
  with:
@@ -51,6 +51,7 @@
51
51
  "globals": "^16.5.0",
52
52
  "@eslint/js": "^9.39.1",
53
53
  "@vitejs/plugin-react": "^5.1.0",
54
- "babel-plugin-react-compiler": "^1.0.0"
54
+ "babel-plugin-react-compiler": "^1.0.0",
55
+ "bun-plugin-react-compiler": "^0.3.2"
55
56
  }
56
57
  }
@@ -1,5 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-custom",
3
+ "version": "0.0.0",
3
4
  "exports": {
4
5
  ".": {
5
6
  "default": "./index.mjs"