@theholocron/react-template 0.5.3 → 0.5.5
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/README.md +12 -0
- package/package.json +18 -15
package/README.md
CHANGED
|
@@ -6,6 +6,8 @@ A modern React template with pre-configured tools, best practices, and CI/CD set
|
|
|
6
6
|
|
|
7
7
|
<!-- /holocron:description -->
|
|
8
8
|
|
|
9
|
+
<!-- holocron:template-only -->
|
|
10
|
+
|
|
9
11
|
## Getting Started
|
|
10
12
|
|
|
11
13
|
Use the [Holocron CLI](https://github.com/theholocron/holocron) to scaffold a new React project. It clones the template, renames all placeholder references, wires up your vault provider, and runs `holocron setup` in one step:
|
|
@@ -25,8 +27,12 @@ This will:
|
|
|
25
27
|
3. Run `pnpm install` (including Playwright browser download)
|
|
26
28
|
4. Run `holocron setup` to configure branch protection, labels, workflows, and repo settings
|
|
27
29
|
|
|
30
|
+
<!-- /holocron:template-only -->
|
|
31
|
+
|
|
28
32
|
## Development
|
|
29
33
|
|
|
34
|
+
<!-- holocron:development -->
|
|
35
|
+
|
|
30
36
|
This repo uses [pnpm workspaces](https://pnpm.io/workspaces).
|
|
31
37
|
|
|
32
38
|
```bash
|
|
@@ -39,6 +45,8 @@ pnpm typecheck # tsc --noEmit
|
|
|
39
45
|
pnpm lint # lint via super-linter (Docker)
|
|
40
46
|
```
|
|
41
47
|
|
|
48
|
+
<!-- /holocron:development -->
|
|
49
|
+
|
|
42
50
|
## What's Included
|
|
43
51
|
|
|
44
52
|
| Tool | Purpose |
|
|
@@ -57,4 +65,8 @@ pnpm lint # lint via super-linter (Docker)
|
|
|
57
65
|
|
|
58
66
|
## Releases
|
|
59
67
|
|
|
68
|
+
<!-- holocron:releases -->
|
|
69
|
+
|
|
60
70
|
Releases are automated via [semantic-release](https://semantic-release.gitbook.io) on push to `main`. See [CHANGELOG.md](CHANGELOG.md) for the release history.
|
|
71
|
+
|
|
72
|
+
<!-- /holocron:releases -->
|
package/package.json
CHANGED
|
@@ -1,27 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theholocron/react-template",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.5",
|
|
4
4
|
"description": "A modern React template with pre-configured tools, best practices, and CI/CD setup for rapid project development.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"react",
|
|
7
|
+
"template",
|
|
8
|
+
"typescript",
|
|
9
|
+
"vite"
|
|
10
|
+
],
|
|
5
11
|
"homepage": "https://docs.theholocron.dev/react-template/",
|
|
6
12
|
"bugs": "https://github.com/theholocron/react-template/issues",
|
|
7
|
-
"repository":
|
|
8
|
-
"type": "git",
|
|
9
|
-
"url": "https://github.com/theholocron/react-template.git"
|
|
10
|
-
},
|
|
13
|
+
"repository": "theholocron/react-template",
|
|
11
14
|
"license": "GPL-3.0",
|
|
12
15
|
"author": "Newton Koumantzelis",
|
|
16
|
+
"sideEffects": false,
|
|
13
17
|
"type": "module",
|
|
14
18
|
"exports": {
|
|
15
19
|
".": {
|
|
20
|
+
"types": "./dist/index.d.ts",
|
|
16
21
|
"import": "./dist/react-template.es.js",
|
|
17
|
-
"require": "./dist/react-template.cjs.js"
|
|
22
|
+
"require": "./dist/react-template.cjs.js",
|
|
23
|
+
"default": "./dist/react-template.cjs.js"
|
|
18
24
|
},
|
|
19
25
|
"./style": "./dist/style.css"
|
|
20
26
|
},
|
|
21
|
-
"
|
|
22
|
-
"module": "dist/react-template.es.js",
|
|
23
|
-
"types": "dist/index.d.ts",
|
|
24
|
-
"style": "dist/style.css",
|
|
27
|
+
"style": "./dist/style.css",
|
|
25
28
|
"files": [
|
|
26
29
|
"dist/*"
|
|
27
30
|
],
|
|
@@ -70,12 +73,12 @@
|
|
|
70
73
|
"@testing-library/jest-dom": "^7.0.0",
|
|
71
74
|
"@testing-library/react": "^16.3.0",
|
|
72
75
|
"@theholocron/astro-config": "^7.22.2",
|
|
73
|
-
"@theholocron/cli": "^3.
|
|
76
|
+
"@theholocron/cli": "^3.38.1",
|
|
74
77
|
"@theholocron/commitlint-config": "^7.19.1",
|
|
75
78
|
"@theholocron/docs-theme": "^1.3.5",
|
|
76
|
-
"@theholocron/eslint-config": "^7.
|
|
77
|
-
"@theholocron/holocron-config": "^7.
|
|
78
|
-
"@theholocron/holocron-plugin-github": "^3.
|
|
79
|
+
"@theholocron/eslint-config": "^7.23.2",
|
|
80
|
+
"@theholocron/holocron-config": "^7.28.2",
|
|
81
|
+
"@theholocron/holocron-plugin-github": "^3.38.1",
|
|
79
82
|
"@theholocron/lighthouse-config": "^7.19.1",
|
|
80
83
|
"@theholocron/lint-staged-config": "^7.19.1",
|
|
81
84
|
"@theholocron/prettier-config": "^7.19.1",
|
|
@@ -143,7 +146,7 @@
|
|
|
143
146
|
],
|
|
144
147
|
"overrides": {
|
|
145
148
|
"@commitlint/config-conventional>conventional-changelog-conventionalcommits": "7",
|
|
146
|
-
"conventional-changelog-conventionalcommits": "
|
|
149
|
+
"conventional-changelog-conventionalcommits": "9.3.1"
|
|
147
150
|
}
|
|
148
151
|
},
|
|
149
152
|
"msw": {
|