Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Danzo7 committed Apr 11, 2021
1 parent 2142c4a commit a596727
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
- Add the ability to have more than one template.
- Add type definition for config file with type guard.
- implement a new VSCode Multi step inputs to collect data (selectedTemplate, variants).
- - Add ``isWrapped`` option to plugin settings.
- Add ``isWrapped`` option to plugin settings.
- improve Error handling and error messages.
- cleanUp old code and improve reliability.
- Docs with gif examples now!.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ example:
```js
[
{ name:"template_name",
variants:["name","variable"],
variants:["name","variable","variant1"],
template:[
[`index.js`,
`import {{variable}} from "{{variant1}}.js"`
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"name": "components-boilerplate",
"displayName": "Components Boilerplate",
"description": "generate boilerplate code/folders/files .e.g. reactJs components.",
"version": "1.0.0",
"publisher": "Danzo7",
"version": "1.0.1",
"publisher": "danzo7",
"engines": {
"vscode": "^1.52.0"
},
Expand Down Expand Up @@ -32,7 +32,7 @@
"boilerplate.component.isWrapped": {
"type": "boolean",
"default": false,
"markdownDescription": "Disable this if you don't want to wrap your component. \n > In default generated components are wrapped under a directory name of the first variant in config"
"markdownDescription": "Disable this if you don't want to wrap your component. \n * When enabled generated components will wrapped in a directory with the first variant as a name."
}
}
},
Expand Down

0 comments on commit a596727

Please sign in to comment.