Skip to content

Commit

Permalink
Merge pull request #9 from justgeek/development
Browse files Browse the repository at this point in the history
[1.2.2]
  • Loading branch information
justgeek authored Jul 15, 2020
2 parents a3274dd + 1817120 commit c900760
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Please feel free to contribute or just send your suggestions/feedback to <mt@pro

## Installation
```js
npm install -S vue-generate-component-x
npm install -D vue-generate-component-x
```
-- or --

Expand Down
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Hotfix] 1.2.2
### Changed
- Updated README.md file to install package as dev dependency
- Updated page template name to have postfix

## [Hotfix] 1.2.1
### Changed
- Commented unnecessary imports to avoid lint warnings in some projects
Expand Down
2 changes: 1 addition & 1 deletion lib/blueprints/component/temp.script.extension
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Component from 'vue-class-component';
@Component({
components: {
},
name: '{{name | kebabCase}}',
name: '{{name | kebabCase}}-{{postfix | kebabCase }}',
})

export default class {{name | PascalCase}}{{postfix | PascalCase}} extends {% if classExtension %}{{classExtension}}{% else %}Vue{% endif %} {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue-generate-component-x",
"version": "1.2.1",
"version": "1.2.2",
"description": "Vue js component generator. Supports creating files for vuex store, and actions",
"main": "lib/vgc.js",
"homepage": "https://github.com/justgeek/vue-generate-component",
Expand Down

0 comments on commit c900760

Please sign in to comment.