create-raclette-app 0.1.34 → 0.1.35

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
@@ -7,8 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
- ## [0.1.34] - 2026-05-13 <a href="https://gitlab.com/raclettejs/core-dev/-/compare/v0.1.32...v0.1.34" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
10
+ ## [0.1.35] - 2026-05-14 <a href="https://gitlab.com/raclettejs/core-dev/-/compare/v0.1.34...v0.1.35" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
11
+
12
+ ### Updated
11
13
 
14
+ - Scaffold `templates/package.json` dependency pins:
15
+ - `@raclettejs/core`: `0.1.34` → `0.1.35`
16
+ - `@raclettejs/types`: `0.1.34` → `0.1.35`
17
+ - `@raclettejs/workbench`: `0.1.34` → `0.1.35`
18
+
19
+ ## [0.1.34] - 2026-05-13 <a href="https://gitlab.com/raclettejs/core-dev/-/compare/v0.1.32...v0.1.34" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
12
20
 
13
21
  ### Added
14
22
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-raclette-app",
3
- "version": "0.1.34",
3
+ "version": "0.1.35",
4
4
  "description": "CLI tool to create a racletteJS application boilerplate",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -12,7 +12,7 @@
12
12
  "templates/"
13
13
  ],
14
14
  "scripts": {
15
- "build": "yarn sync:template-versions && yarn sync:template-deps && node build.mjs",
15
+ "build": "yarn sync:templates && node build.mjs",
16
16
  "dev": "node watch.mjs",
17
17
  "format:check": "prettier --check .",
18
18
  "format:fix": "prettier --write .",
@@ -20,11 +20,10 @@
20
20
  "lint": "eslint",
21
21
  "prepack": "npm run build",
22
22
  "check:template-deps": "node scripts/sync-template-devdeps-from-core-services.mjs --check-only --report",
23
- "sync:template-deps": "node scripts/sync-template-devdeps-from-core-services.mjs",
24
- "sync:template-versions": "node scripts/sync-template-raclette-versions.mjs",
23
+ "sync:templates": "node scripts/sync-template-raclette-versions.mjs && node scripts/sync-template-devdeps-from-core-services.mjs",
25
24
  "test:coverage": "jest --coverage",
26
25
  "test:watch": "jest --watch",
27
- "test": "yarn sync:template-versions && yarn sync:template-deps && jest"
26
+ "test": "yarn sync:templates && jest"
28
27
  },
29
28
  "keywords": [
30
29
  "cli",
@@ -17,12 +17,12 @@
17
17
  "lint:fix": "eslint --fix"
18
18
  },
19
19
  "dependencies": {
20
- "@raclettejs/workbench": "0.1.34",
21
- "@raclettejs/core": "0.1.34"
20
+ "@raclettejs/workbench": "0.1.35",
21
+ "@raclettejs/core": "0.1.35"
22
22
  },
23
23
  "devDependencies": {
24
24
  "@eslint/js": "9.35.0",
25
- "@raclettejs/types": "0.1.34",
25
+ "@raclettejs/types": "0.1.35",
26
26
  "@sinclair/typebox": "0.34.48",
27
27
  "@typescript-eslint/eslint-plugin": "^8.32.1",
28
28
  "@typescript-eslint/parser": "^8.32.1",