Skip to content

Commit 565d1f3

Browse files
authored
Merge pull request #61 from chenasraf/pre
v1.7.2
2 parents de05bca + 9f58fff commit 565d1f3

File tree

18 files changed

+2186
-1555
lines changed

18 files changed

+2186
-1555
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Test & Build
22

33
on:
44
push:
5-
branches: [ master, develop, beta, feat/*, fix/* ]
5+
branches: [ master, develop, pre, feat/*, fix/* ]
66
jobs:
77
test:
88
runs-on: ubuntu-latest

.vscode/settings.json

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@
1414
"variabletoken"
1515
],
1616
"[markdown]": {
17-
"editor.rulers": [
18-
87,
19-
100
20-
],
21-
},
17+
"editor.rulers": [87, 100]
18+
}
2219
}

.vscode/tasks.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"problemMatcher": []
1515
},
1616
{
17-
"command": "yarn typedoc --watch",
17+
"command": "pnpm typedoc --watch",
1818
"label": "typedoc --watch",
1919
"type": "shell",
2020
"problemMatcher": []
@@ -32,8 +32,8 @@
3232
"problemMatcher": []
3333
},
3434
{
35-
"command": "yarn test --watchAll",
36-
"label": "yarn test --watchAll",
35+
"command": "pnpm test --watchAll",
36+
"label": "pnpm test --watchAll",
3737
"type": "shell",
3838
"problemMatcher": []
3939
},

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
# Change Log
22

3-
## [1.7.1](https://github.com/chenasraf/simple-scaffold/compare/v1.7.0...v1.7.1) (2023-06-07)
3+
## [1.7.2-pre.1](https://github.com/chenasraf/simple-scaffold/compare/v1.7.1...v1.7.2-pre.1) (2023-08-15)
4+
5+
6+
### Bug Fixes
47

8+
* windows path resolution ([98ee000](https://github.com/chenasraf/simple-scaffold/commit/98ee00031fc1ad67a53797a9e28e5c4759bc8bce))
9+
10+
## [1.7.1](https://github.com/chenasraf/simple-scaffold/compare/v1.7.0...v1.7.1) (2023-06-07)
511

612
### Bug Fixes
713

8-
* local config file load error ([2b74239](https://github.com/chenasraf/simple-scaffold/commit/2b7423993be06b2375631642455c801ae2acf75f))
14+
- local config file load error
15+
([2b74239](https://github.com/chenasraf/simple-scaffold/commit/2b7423993be06b2375631642455c801ae2acf75f))
916

1017
## [1.7.0](https://github.com/chenasraf/simple-scaffold/compare/v1.7.0-develop.5...v1.7.0) (2023-05-17)
1118

examples/.dotdir/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# {{ name }} Readme
2+
3+
TO DO:
4+
5+
- [ ] ...

nodemon.json

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,6 @@
11
{
2-
"ignore": [
3-
"**/*.test.ts",
4-
"**/*.spec.ts",
5-
".git",
6-
"node_modules"
7-
],
8-
"watch": [
9-
"src"
10-
],
2+
"ignore": ["**/*.test.ts", "**/*.spec.ts", ".git", "node_modules"],
3+
"watch": ["src"],
114
"exec": "node -r tsconfig-paths/register -r ts-node/register ./src/index.ts",
125
"ext": "ts, js"
136
}

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "simple-scaffold",
3-
"version": "1.7.1",
3+
"version": "1.7.2-pre.1",
44
"description": "Generate any file structure - from single components to entire app boilerplates, with a single command.",
55
"homepage": "https://chenasraf.github.io/simple-scaffold",
66
"repository": "https://github.com/chenasraf/simple-scaffold.git",
77
"author": "Chen Asraf <[email protected]>",
88
"license": "MIT",
99
"main": "index.js",
1010
"bin": "cmd.js",
11-
"packageManager": "pnpm@8.5.0",
11+
"packageManager": "pnpm@8.6.2",
1212
"keywords": [
1313
"javascript",
1414
"cli",
@@ -37,7 +37,7 @@
3737
"dependencies": {
3838
"chalk": "^4.1.2",
3939
"date-fns": "^2.30.0",
40-
"glob": "^10.2.3",
40+
"glob": "^10.3.3",
4141
"handlebars": "^4.7.7",
4242
"massarg": "^1.0.7-pre.1"
4343
},
@@ -60,7 +60,7 @@
6060
"semantic-release-conventional-commits": "^3.0.0",
6161
"ts-jest": "^29.1.0",
6262
"ts-node": "^10.9.1",
63-
"typedoc": "^0.24.6",
63+
"typedoc": "^0.24.7",
6464
"typescript": "^5.0.4"
6565
}
6666
}

0 commit comments

Comments
 (0)