create-template-project 1.5.21 → 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.
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}}"
|
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": [
|