Skip to content

Commit

Permalink
Merge pull request #489 from kethinov/0.21.9
Browse files Browse the repository at this point in the history
0.21.9
  • Loading branch information
kethinov authored Oct 22, 2023
2 parents a2e5c13 + a760b48 commit ea709d6
Show file tree
Hide file tree
Showing 8 changed files with 1,820 additions and 722 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@

- Put your changes here...

## 0.21.9

- Added `eslint-plugin-html` to the default devDependency list.
- Fixed typo in CLI output when app is generated.
- Various dependencies updated.

## 0.21.8

- Various dependencies updated.
Expand Down
2 changes: 1 addition & 1 deletion generators/app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -794,7 +794,7 @@ module.exports = class extends Generator {
if (!this.options['skip-closing-message']) {
this.log(`\nYour app ${this.appName} has been generated.\n`)
this.log('To run the app:')
this.log('- Change to your app directory: cd ' + this.appName)
this.log('- Change to your app directory: cd ' + this.dirname)
this.log('- Install dependencies: npm i')
this.log('- To run in development mode: npm run d')
this.log('- To run in production mode: npm run p')
Expand Down
4 changes: 0 additions & 4 deletions generators/app/templates/README.md.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@
- Use `npm ci` if you're not altering the dependency list or changing the versions of your dependencies.
- Use `npm install` if you've altered the dependency list or changed the version of one of your dependencies. This is also necessary if you change the app's version number.

- Manage HTTPS certs:
- Use `npm run generate-certs` if you want to make self-signed certs.
- If you have your own certs, put a `cert.pem` and `key.pem` file in a `certs` directory at the root of your app.

- Run the app:
- Use `npm run production` to run in production mode.
- Default shorthands:
Expand Down
2 changes: 1 addition & 1 deletion generators/app/templates/defaults.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
},
"Sass": {
"dependencies": {
"sass": "~1.68.0"
"sass": "~1.69.0"
},
"config": {
"enable": true,
Expand Down
2 changes: 2 additions & 0 deletions generators/app/templates/mvc/views/robots.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,5 @@ Disallow: /harm/to/self
# |___| /|\ |___| | ° | - ||
# `---' |___| `---' ` | □=□ ´´
# `---' `--_____--´
#
# See https://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file
3 changes: 2 additions & 1 deletion generators/app/templates/package.json.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
"devDependencies": {
"nodemon": "~3.0.0",
"standard": "~17.1.0",
"stylelint": "~15.10.0",
"eslint-plugin-html": "~7.1.0",
"stylelint": "~15.11.0",
<%- stylelintPostCssModule -%>
<%- stylelintConfigModule %>
},
Expand Down
Loading

0 comments on commit ea709d6

Please sign in to comment.