Skip to content

Commit 9c53334

Browse files
authored
Merge pull request #362 from kethinov/0.19.4
0.19.4
2 parents 3f667ad + 1a04923 commit 9c53334

File tree

9 files changed

+111
-105
lines changed

9 files changed

+111
-105
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ${{ matrix.os }}
66
strategy:
77
matrix:
8-
node-version: [12.x, 14.x]
8+
node-version: [14.x, 15.x]
99
os: [ubuntu-latest, macos-latest, windows-latest]
1010
steps:
1111
- uses: actions/checkout@v2

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44

55
- Put your changes here...
66

7+
## 0.19.4
8+
9+
- Removed deprecated code from generator.
10+
- Dropped Node 12.
11+
- Various dependencies bumped.
12+
713
## 0.19.3
814

915
- Fixed custom app name supplied via CLI.

CONTRIBUTING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## Before opening a pull request
44

5+
- Update dependencies in `package.json`, `generators/app/templates/defaults.json`, and `generators/app/templates/_package.json`.
56
- Be sure all tests pass: `npm t`.
67
- Ensure 100% code coverage and write new tests if necessary: `npm run coverage`.
78
- Add your changes to `CHANGELOG.md`.

generators/app/templates/_package.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,15 @@
77
"license": "",
88
"main": "app.js",
99
"engines": {
10-
"node": ">=12.0.0"
10+
"node": ">=14.0.0"
1111
},
12-
"engineStrict": true,
1312
"dependencies": <%- JSON.stringify(dependencies) %>,
1413
"devDependencies": {
15-
"husky": "~4.2.5",
16-
"lint-staged": "~10.2.9",
17-
"nodemon": "~2.0.4",
18-
"standard": "~14.3.4",
19-
"stylelint": "~13.6.0",
14+
"husky": "~4.3.0",
15+
"lint-staged": "~10.5.0",
16+
"nodemon": "~2.0.0",
17+
"standard": "~16.0.0",
18+
"stylelint": "~13.9.0",
2019
"stylelint-config-standard": "~20.0.0"
2120
},
2221
"nodemonConfig": {

generators/app/templates/defaults.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"defaultCSSCompiler": "Less",
1616
"Less": {
1717
"dependencies": {
18-
"less": "~3.12.0"
18+
"less": "~4.1.0"
1919
},
2020
"config": {
2121
"enable": true,

generators/app/templates/mvc/views/teddy/layouts/main.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
<html lang='en'>
33
<head>
44
<meta charset='utf-8'>
5-
<!--[if IE]><meta http-equiv='X-UA-Compatible' content='IE=edge'><![endif]--> {! fix for IE9 rendering in quirks mode !}
65
<meta name='viewport' content='width=device-width,initial-scale=1'>
76
<meta name='format-detection' content='telephone=no'>
87
<title>{content.pageTitle}</title>
@@ -17,4 +16,4 @@ <h1>{content.appTitle}</h1>
1716
</main>
1817
<script type='text/javascript' src='/js/main.js'></script>
1918
</body>
20-
</html>
19+
</html>

generators/app/templates/mvc/views/vanilla/homepage.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
<html lang='en'>
33
<head>
44
<meta charset='utf-8'>
5-
<!--[if IE]><meta http-equiv='X-UA-Compatible' content='IE=edge'><![endif]-->
65
<meta name='viewport' content='width=device-width,initial-scale=1'>
76
<meta name='format-detection' content='telephone=no'>
87
<title><%= appName %> - Homepage</title>

0 commit comments

Comments
 (0)