@raclettejs/core 0.1.20 → 0.1.21

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,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.21] - 2026-03-05 <a href="https://gitlab.com/raclettejs/core-dev/-/compare/v0.1.20...v0.1.21" target="_blank" rel="noopener"><b>Overview of all changes</b></a>
11
+
10
12
  ### Fixed
11
13
 
12
14
  - Orchestrator/Frontend: route params which are clearly true/false or numbers will now be parsed as such to the widet props. This is an intermediate fix until the typesafe router is implemented
@@ -0,0 +1,23 @@
1
+ # Contributing to the racletteJS Core
2
+
3
+ Thank you for your interest in contributing to racletteJS ❤️
4
+
5
+ To ensure consistency across the project, we maintain a single, up-to-date contributing guide in our meta repository.
6
+
7
+ ## 📖 Contribution Guide
8
+
9
+ Please read the official [contributing guidelines](https://gitlab.com/raclettejs/raclettejs/-/blob/main/guides/CORE_DEVELOPMENT.md?ref_type=heads) here:
10
+
11
+ 👉 https://gitlab.com/raclettejs/raclettejs/-/blob/main/guides/CORE_DEVELOPMENT.md?ref_type=heads
12
+
13
+ ## 🚀 Getting Started
14
+
15
+ Before opening an issue or merge request:
16
+
17
+ 1. Read the guide linked above.
18
+ 2. Check existing issues and merge requests.
19
+ 3. Follow the documented workflow.
20
+
21
+ If you have questions after reading the guide, feel free to open an issue and in any case, stay cheesy 🧀 <3
22
+
23
+ We appreciate your contributions!
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@raclettejs/core",
3
- "version": "0.1.20",
3
+ "version": "0.1.21",
4
4
  "description": "racletteJS core package",
5
5
  "repository": "https://gitlab.com/raclettejs/core",
6
6
  "author": "Pacifico Digital Explorations GmbH <info@raclettejs.com>",
@@ -35,7 +35,9 @@
35
35
  "README.md",
36
36
  "yarn.lock",
37
37
  "src/types.ts",
38
- "LICENSE.md"
38
+ "LICENSE.md",
39
+ "CONTRIBUTING.md",
40
+ "raclette.default.config.yaml"
39
41
  ],
40
42
  "exports": {
41
43
  ".": {
@@ -74,7 +76,7 @@
74
76
  },
75
77
  "devDependencies": {
76
78
  "@eslint/js": "9.35.0",
77
- "@raclettejs/types": "^0.1.20",
79
+ "@raclettejs/types": "^0.1.21",
78
80
  "@types/fs-extra": "11.0.4",
79
81
  "@types/js-yaml": "4.0.9",
80
82
  "@types/node": "24.5.1",
@@ -0,0 +1,60 @@
1
+ name: "raclette-app"
2
+ root: ".raclette"
3
+ global:
4
+ requireAuthentication: true
5
+ services:
6
+ frontend:
7
+ enabled: true
8
+ port: 8081
9
+ installPackages: []
10
+ backend:
11
+ enabled: true
12
+ port: 8082
13
+ enableDebug: false
14
+ installPackages: []
15
+ mongodb:
16
+ enabled: true
17
+ port: 27017
18
+ cache:
19
+ enabled: true
20
+ port: 6379
21
+ workbench:
22
+ enabled: false
23
+ frontendPort: 8083
24
+ backendPort: 8084
25
+ modules: []
26
+ plugins: []
27
+ env:
28
+ development: {}
29
+ production:
30
+ NODE_ENV: "production"
31
+ frontend:
32
+ framework: "vue"
33
+ i18n:
34
+ locales: ["en-EU"]
35
+ priorities:
36
+ app: 10
37
+ ".": 30
38
+ vue:
39
+ plugins: []
40
+ backend:
41
+ sockets:
42
+ autoSend:
43
+ compositions: true
44
+ interactionLinks: true
45
+ projectConfig: true
46
+ security:
47
+ requireAuth: true
48
+ tokenValidation: "jwt"
49
+ options:
50
+ adapter: "memory"
51
+ connectionTimeout: 3000
52
+ pingInterval: 1500
53
+ pingTimeout: 1000
54
+ sourceDirectories: []
55
+ packageMerging:
56
+ frontend: [{ file: "./packages.json", key: "frontend" }]
57
+ backend: [{ file: "./packages.json", key: "backend" }]
58
+ lockFiles:
59
+ frontend: "./app.frontend.yarn.lock"
60
+ backend: "./app.backend.yarn.lock"