create-conformal 0.5.0 → 0.6.2

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/.prettierignore CHANGED
@@ -1 +1 @@
1
- template
1
+ template/.github
package/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # create-conformal
2
2
 
3
+ ## 0.6.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 74e0f8a: Redact cargo.toml filenames in templates
8
+ - Updated dependencies [74e0f8a]
9
+ - Updated dependencies [657e18a]
10
+ - @conformal/create-plugin@0.6.0
11
+
12
+ ## 0.6.1
13
+
14
+ ### Patch Changes
15
+
16
+ - 0ec3cc7: improve publish script
17
+
18
+ ## 0.6.0
19
+
20
+ ### Minor Changes
21
+
22
+ - b695473: use hoisted linker to support bun 1.3.0
23
+
3
24
  ## 0.5.0
4
25
 
5
26
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-conformal",
3
- "version": "0.5.0",
3
+ "version": "0.6.2",
4
4
  "description": "Project generator script for conformal projects",
5
5
  "homepage": "https://russellmcc.github.io/conformal",
6
6
  "bugs": "https://github.com/russellmcc/conformal/issues",
@@ -15,7 +15,7 @@
15
15
  "type": "module",
16
16
  "dependencies": {
17
17
  "@conformal/stamp": "^0.3.5",
18
- "@conformal/create-plugin": "^0.5.0",
18
+ "@conformal/create-plugin": "^0.6.0",
19
19
  "@commander-js/extra-typings": "^12.1.0",
20
20
  "commander": "^12.1.0"
21
21
  }
package/package.json.bak CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-conformal",
3
- "version": "0.5.0",
3
+ "version": "0.6.2",
4
4
  "description": "Project generator script for conformal projects",
5
5
  "homepage": "https://russellmcc.github.io/conformal",
6
6
  "bugs": "https://github.com/russellmcc/conformal/issues",
@@ -15,7 +15,7 @@
15
15
  "type": "module",
16
16
  "dependencies": {
17
17
  "@conformal/stamp": "^0.3.5",
18
- "@conformal/create-plugin": "^0.5.0",
18
+ "@conformal/create-plugin": "^0.6.0",
19
19
  "@commander-js/extra-typings": "^12.1.0",
20
20
  "commander": "^12.1.0"
21
21
  }
@@ -148,6 +148,6 @@ describe("create-conformal template", () => {
148
148
  { unsafeCleanup: true },
149
149
  );
150
150
  },
151
- 3 * MINUTE,
151
+ 5 * MINUTE,
152
152
  );
153
153
  });
@@ -0,0 +1,2 @@
1
+ [install]
2
+ linker = "hoisted"
@@ -2,11 +2,7 @@
2
2
  "compilerOptions": {
3
3
  "target": "es2020",
4
4
  "useDefineForClassFields": true,
5
- "lib": [
6
- "es2020",
7
- "dom",
8
- "dom.iterable"
9
- ],
5
+ "lib": ["es2020", "dom", "dom.iterable"],
10
6
  "module": "esnext",
11
7
  "skipLibCheck": true,
12
8
  /* Bundler mode */
@@ -22,4 +18,4 @@
22
18
  "noFallthroughCasesInSwitch": true,
23
19
  "noUncheckedIndexedAccess": true
24
20
  }
25
- }
21
+ }
File without changes