create-rstack 1.5.0 → 1.5.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/dist/index.js CHANGED
@@ -1700,6 +1700,7 @@ async function create({ name, root, templates, skipFiles, getTemplateName, mapES
1700
1700
  const biomeJson = await readJSON(biomeJsonTemplatePath);
1701
1701
  biomeJson.$schema = biomeJson.$schema.replace('{version}', biomeVersion);
1702
1702
  await node_fs.promises.writeFile(biomeJsonPath, `${JSON.stringify(biomeJson, null, 2)}\n`, 'utf-8');
1703
+ await node_fs.promises.rm(biomeJsonTemplatePath);
1703
1704
  }
1704
1705
  }
1705
1706
  const nextSteps = noteInformation ? noteInformation : [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-rstack",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "description": "Create a new Rstack project",
5
5
  "repository": {
6
6
  "type": "git",
@@ -40,7 +40,7 @@
40
40
  ]
41
41
  },
42
42
  "devDependencies": {
43
- "@biomejs/biome": "^2.0.0",
43
+ "@biomejs/biome": "2.0.0",
44
44
  "@clack/prompts": "^0.11.0",
45
45
  "@microsoft/api-extractor": "^7.52.8",
46
46
  "@rslib/core": "0.10.1",
@@ -7,6 +7,6 @@
7
7
  "format": "biome format --write"
8
8
  },
9
9
  "devDependencies": {
10
- "@biomejs/biome": "^2.0.0"
10
+ "@biomejs/biome": "2.0.0"
11
11
  }
12
12
  }