create-conformal 0.6.1 → 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,14 @@
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
+
3
12
  ## 0.6.1
4
13
 
5
14
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-conformal",
3
- "version": "0.6.1",
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.6.1",
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
  }
@@ -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