create-conformal 0.12.1 → 0.13.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,18 @@
1
1
  # create-conformal
2
2
 
3
+ ## 0.13.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 5f3e01f: Use cargo patch to workaround wry bug
8
+
9
+ ### Patch Changes
10
+
11
+ - a498daf: Add UI smoke test to template
12
+ - Updated dependencies [a498daf]
13
+ - Updated dependencies [5f3e01f]
14
+ - @conformal/create-plugin@0.12.1
15
+
3
16
  ## 0.12.1
4
17
 
5
18
  ### 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.1",
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.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",
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.1",
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.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",
@@ -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
  }
@@ -25,3 +25,8 @@ default_trait_access = "allow"
25
25
 
26
26
  [profile.release]
27
27
  lto = "thin"
28
+
29
+ # We need these patches to workaround https://github.com/tauri-apps/wry/issues/1675
30
+ [patch.crates-io]
31
+ objc2 = { git = "https://github.com/madsmtm/objc2.git", rev = "0dc236c0e186ed29991798d2a6ff5cdc595b2ffa" }
32
+ wry = { git = "https://github.com/russellmcc/wry.git", rev = "458591b02238d89322b0567ba2918a123ff22dda" }