@nzz/q-cli 2.2.1 → 2.2.4
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.
|
@@ -32,7 +32,7 @@ function newCustomCode(command) {
|
|
|
32
32
|
// Initialize git repository to pull the skeletons/custom-code-project content into a separate directory
|
|
33
33
|
console.log('Initializing git repository...');
|
|
34
34
|
execSync('git init');
|
|
35
|
-
execSync('git remote add origin
|
|
35
|
+
execSync('git remote add origin git@github.com:nzz-pt/Q.git');
|
|
36
36
|
// Enable sparse checkout and pull the content from remote
|
|
37
37
|
console.log(`Sparse checkout ${skeletonCustomCodeDir}...`);
|
|
38
38
|
execSync('git sparse-checkout init --cone');
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nzz/q-cli",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.4",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/index.ts",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"copy-assets": "cp -R src/assets dist/",
|
|
16
16
|
"create-custom-code-item": "tsx ./src/index.ts create-custom-code-item -e local -c ./tests/q.config.json -t 'TEST CUSTOM CODE ITEM'",
|
|
17
17
|
"update-item": "tsx ./src/index.ts update-item -e local -c ./tests/q.config.json",
|
|
18
|
-
"new-custom-code": "tsx ./src/index.ts new-custom-code
|
|
18
|
+
"new-custom-code": "tsx ./src/index.ts new-custom-code my-custom-code-project",
|
|
19
19
|
"test": "vitest",
|
|
20
20
|
"test:run": "vitest run",
|
|
21
21
|
"test:coverage": "vitest run --coverage",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@repo/types-files": "workspace:^",
|
|
39
39
|
"@vitest/coverage-v8": "^3.0.8",
|
|
40
40
|
"delivery-server": "workspace:*",
|
|
41
|
-
"typescript": "^5.
|
|
41
|
+
"typescript": "^5.9.3",
|
|
42
42
|
"vitest": "^0.34.6"
|
|
43
43
|
}
|
|
44
44
|
}
|