create-conformal 0.12.1 → 0.13.1

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,26 @@
1
1
  # create-conformal
2
2
 
3
+ ## 0.13.1
4
+
5
+ ### Patch Changes
6
+
7
+ - c490521: oops can't publish with crate patches
8
+ - Updated dependencies [c490521]
9
+ - @conformal/create-plugin@0.12.2
10
+
11
+ ## 0.13.0
12
+
13
+ ### Minor Changes
14
+
15
+ - 5f3e01f: Use cargo patch to workaround wry bug
16
+
17
+ ### Patch Changes
18
+
19
+ - a498daf: Add UI smoke test to template
20
+ - Updated dependencies [a498daf]
21
+ - Updated dependencies [5f3e01f]
22
+ - @conformal/create-plugin@0.12.1
23
+
3
24
  ## 0.12.1
4
25
 
5
26
  ### Patch Changes
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "dependencies": {
3
3
  "@conformal/stamp": "^0.5.0",
4
- "@conformal/create-plugin": "^0.12.0",
4
+ "@conformal/create-plugin": "^0.12.2",
5
5
  "@commander-js/extra-typings": "^14.0.0",
6
6
  "commander": "^14.0.3"
7
7
  },
8
8
  "name": "create-conformal",
9
- "version": "0.12.1",
9
+ "version": "0.13.1",
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",
package/package.json.bak CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "dependencies": {
3
3
  "@conformal/stamp": "^0.5.0",
4
- "@conformal/create-plugin": "^0.12.0",
4
+ "@conformal/create-plugin": "^0.12.2",
5
5
  "@commander-js/extra-typings": "^14.0.0",
6
6
  "commander": "^14.0.3"
7
7
  },
8
8
  "name": "create-conformal",
9
- "version": "0.12.1",
9
+ "version": "0.13.1",
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",
@@ -229,10 +229,14 @@ describe("create-conformal template", () => {
229
229
 
230
230
  // Make sure CI would pass.
231
231
  await $`bun run ci`.cwd(dest);
232
+
233
+ // Package one of the plugins with ad-hoc signing
234
+ // to test that we can build distributable packages.
235
+ await $`bun run package test_plug --dist --ad-hoc-sign`.cwd(dest);
232
236
  },
233
237
  { unsafeCleanup: true, tmpdir: process.env.RUNNER_TEMP },
234
238
  );
235
239
  },
236
- process.platform === "win32" ? 10 * MINUTE : 5 * MINUTE,
240
+ 10 * MINUTE,
237
241
  );
238
242
  });
@@ -0,0 +1,2 @@
1
+ [test]
2
+ preload = "./happydom.ts"
@@ -0,0 +1,3 @@
1
+ import { GlobalRegistrator } from "@happy-dom/global-registrator";
2
+
3
+ GlobalRegistrator.register();
@@ -33,6 +33,7 @@
33
33
  "prettier": "^3.8.1",
34
34
  "typescript": "^5.9.3",
35
35
  "@conformal/scripts": "^0.10.0",
36
+ "@happy-dom/global-registrator": "^20.3.3",
36
37
  "tsconfig": "workspace:*"
37
38
  },
38
39
  "catalog": {
@@ -52,6 +53,7 @@
52
53
  "@eslint/js": "^9.39.1",
53
54
  "@vitejs/plugin-react": "^5.1.0",
54
55
  "babel-plugin-react-compiler": "^1.0.0",
55
- "bun-plugin-react-compiler": "^0.3.2"
56
+ "bun-plugin-react-compiler": "^0.3.2",
57
+ "@testing-library/react": "^16.3.2"
56
58
  }
57
59
  }