Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## Future

* tests added
* types added
* placeholders for tabbing through snippet names added to each snippet

## [0.2.0](https://github.com/run-at-scale/vscode-terraform-doc-snippets/compare/v0.1.5...v0.2.0) (2018-05-10)

* override and extra snippets now added through config
* deprecated resources and data sources manually added for their successor
* snippets file rebuilt and now has 1491 pulled from docs + a few custom snippets

## [0.1.5](https://github.com/run-at-scale/vscode-terraform-doc-snippets/compare/v0.1.4...v0.1.5) (2018-05-04)

* gif (🔊 Jiff 🔊) demo added to readme
Expand All @@ -19,7 +31,7 @@ All notable changes to this project will be documented in this file. See [standa

## [0.1.2](https://github.com/run-at-scale/vscode-terraform-doc-snippets/compare/v0.1.1...v0.1.2) (2018-04-26)

* markdown files are sometimes supplied as `.md` and othertimes `.markdown`. The code now handles both.
* markdown files are sometimes supplied as `.md` and other times `.markdown`. The code now handles both.

## [0.1.1](https://github.com/run-at-scale/vscode-terraform-doc-snippets/compare/v0.0.4...v0.1.1) (2018-04-26)

Expand Down
9 changes: 2 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

![Terraform](https://github.com/run-at-scale/vscode-terraform-doc-snippets/raw/master/assets/terraform_logo.png "Terraform doc snippets")

A vscode extension that yanks resource and data source documentation from Terraform provider repos and transforms them into structured vscode snippets - 1452 snippets in total!
A vscode extension that yanks resource and data source documentation from Terraform provider repos and transforms them into structured vscode snippets - ~1500 snippets in total!

## Demo

Expand All @@ -27,16 +27,11 @@ excellent context which is important for understanding how infrastructure primit
* All snippets are delivered as a precompiled bundle - no dynamic lookups so your editor stays speedy.
* Resource and data source name collisions avoided by including `data` or `resource` in each snippet prefix.
* All providers listed in the terraform-providers organization are covered.

## Features (to come)

* Ability to override or add additional snippets through configuration.

## Known Issues

* Repos are pulled from master but could/should be done from latest release.
* tests? What tests?
* Issue #1 is probably that this is my first node project and I'm not to be trusted with the language. Help and review wanted!
* Issue #1 is probably that this is my first node project and I'm not to be trusted with the language. Help and review wanted! Tests needed.

## Contributing

Expand Down
9 changes: 4 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"name": "terraform-doc-snippets",
"displayName": "Terraform doc snippets",
"description": "Terraform code snippets (>1400) straight from documentation for all provider resources and data sources. All providers in the terraform-providers org covered.",
"version": "0.1.5",
"description":
"Terraform code snippets (~1500) straight from documentation for all provider resources and data sources. All providers in the terraform-providers org covered.",
"version": "0.2.0",
"icon": "assets/terraform_logo.png",
"publisher": "run-at-scale",
"license": "MIT",
Expand All @@ -14,9 +15,7 @@
"email": "brandon@atscale.run",
"url": "https://github.com/run-at-scale"
},
"categories": [
"Snippets"
],
"categories": ["Snippets"],
"keywords": [
"Terraform",
"devops",
Expand Down
Loading