create-template-project 1.5.20 → 1.5.23
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.
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"description": "Native-ESM powered web dev build tool"
|
|
6
6
|
},
|
|
7
7
|
"@vitejs/plugin-react": {
|
|
8
|
-
"version": "6.0.
|
|
8
|
+
"version": "6.0.4",
|
|
9
9
|
"description": "The default Vite plugin for React projects."
|
|
10
10
|
},
|
|
11
11
|
"@vitest/browser": {
|
|
@@ -57,15 +57,15 @@
|
|
|
57
57
|
"description": "Modern native git hooks made easy."
|
|
58
58
|
},
|
|
59
59
|
"oxlint": {
|
|
60
|
-
"version": "1.
|
|
60
|
+
"version": "1.75.0",
|
|
61
61
|
"description": "A JavaScript linter written in Rust."
|
|
62
62
|
},
|
|
63
63
|
"oxlint-tsgolint": {
|
|
64
|
-
"version": "0.
|
|
64
|
+
"version": "7.0.2001",
|
|
65
65
|
"description": "TypeScript-specific rules for oxlint."
|
|
66
66
|
},
|
|
67
67
|
"oxfmt": {
|
|
68
|
-
"version": "0.
|
|
68
|
+
"version": "0.60.0",
|
|
69
69
|
"description": "High performance JavaScript / TypeScript formatter."
|
|
70
70
|
},
|
|
71
71
|
"typescript": {
|
|
@@ -97,11 +97,11 @@
|
|
|
97
97
|
"description": "TypeScript definitions for Express."
|
|
98
98
|
},
|
|
99
99
|
"react": {
|
|
100
|
-
"version": "19.2.
|
|
100
|
+
"version": "19.2.8",
|
|
101
101
|
"description": "A JavaScript library for building user interfaces."
|
|
102
102
|
},
|
|
103
103
|
"react-dom": {
|
|
104
|
-
"version": "19.2.
|
|
104
|
+
"version": "19.2.8",
|
|
105
105
|
"description": "React package for working with the DOM."
|
|
106
106
|
},
|
|
107
107
|
"@mui/material": {
|
|
@@ -145,7 +145,7 @@
|
|
|
145
145
|
"description": "tRPC integration for React Query."
|
|
146
146
|
},
|
|
147
147
|
"@tanstack/react-query": {
|
|
148
|
-
"version": "5.101.
|
|
148
|
+
"version": "5.101.4",
|
|
149
149
|
"description": "Powerful asynchronous state management for TS/JS."
|
|
150
150
|
},
|
|
151
151
|
"zod": {
|
package/dist/index.js
CHANGED
|
@@ -61,7 +61,7 @@ var genericProcessor = (content, { opts }) => {
|
|
|
61
61
|
//#endregion
|
|
62
62
|
//#region src/utils/templating/github-workflow.ts
|
|
63
63
|
var WORKFLOW_PNPM_SETUP = ` - name: Setup pnpm
|
|
64
|
-
uses: pnpm/action-setup@
|
|
64
|
+
uses: pnpm/action-setup@v6.0.9
|
|
65
65
|
with:
|
|
66
66
|
version: 9
|
|
67
67
|
run_install: false`;
|
|
@@ -1026,7 +1026,7 @@ Restrictions & Behavior:
|
|
|
1026
1026
|
//#region src/generators/project.ts
|
|
1027
1027
|
var debug$1 = debugLib("create-template-project:generator");
|
|
1028
1028
|
var moduleDir = import.meta.dirname;
|
|
1029
|
-
var PNPM_PACKAGE_MANAGER_VERSION = "pnpm@11.
|
|
1029
|
+
var PNPM_PACKAGE_MANAGER_VERSION = "pnpm@11.16.0";
|
|
1030
1030
|
var PNPM_NPMRC_CONTENT = "resolution-mode=highest\nnode-linker=hoisted\n";
|
|
1031
1031
|
var pathExists = async (filePath) => {
|
|
1032
1032
|
try {
|
|
@@ -16,12 +16,12 @@ jobs:
|
|
|
16
16
|
|
|
17
17
|
steps:
|
|
18
18
|
- name: Checkout
|
|
19
|
-
uses: actions/checkout@
|
|
19
|
+
uses: actions/checkout@v7
|
|
20
20
|
|
|
21
21
|
# [PM_SETUP]
|
|
22
22
|
|
|
23
23
|
- name: Setup Node.js
|
|
24
|
-
uses: actions/setup-node@
|
|
24
|
+
uses: actions/setup-node@v7
|
|
25
25
|
with:
|
|
26
26
|
node-version: ${{ matrix.node-version }}
|
|
27
27
|
cache: "{{packageManager}}"
|
|
@@ -181,6 +181,7 @@ export const linter = defineConfig({
|
|
|
181
181
|
'unicorn/no-typeof-undefined': 'off', // TODO: consider enabling
|
|
182
182
|
'unicorn/prefer-module': 'off', // TODO: consider enabling
|
|
183
183
|
'unicorn/prefer-number-coercion': 'off', // TODO: consider enabling
|
|
184
|
+
'react/function-component-definition': 'off', // TODO: consider enabling
|
|
184
185
|
'react/jsx-filename-extension': ['error', {extensions: ['.tsx']}],
|
|
185
186
|
'react/jsx-max-depth': ['error', {max: 5}],
|
|
186
187
|
'react/jsx-no-literals': 'off',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-template-project",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.23",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "An ultra-modular, type-safe Node.js CLI tool used to scaffold new project templates (CLI, Webpage, Webapp, Fullstack) with best-practice configurations pre-installed.",
|
|
6
6
|
"keywords": [
|
|
@@ -69,9 +69,9 @@
|
|
|
69
69
|
"conventional-changelog-angular": "9.2.1",
|
|
70
70
|
"eslint-plugin-regexp": "3.1.1",
|
|
71
71
|
"husky": "9.1.7",
|
|
72
|
-
"oxfmt": "0.
|
|
73
|
-
"oxlint": "1.
|
|
74
|
-
"oxlint-tsgolint": "0.
|
|
72
|
+
"oxfmt": "0.60.0",
|
|
73
|
+
"oxlint": "1.75.0",
|
|
74
|
+
"oxlint-tsgolint": "7.0.2001",
|
|
75
75
|
"release-it": "20.2.1",
|
|
76
76
|
"rimraf": "6.1.3",
|
|
77
77
|
"typescript": "7.0.2",
|