Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Multi root #46

Merged
merged 12 commits into from
Dec 16, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@ install:
- npm run vscode:prepublish

script:
- npm run lint
- npm test --silent
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# 1.0.0

## What's New
* Support for multi-root workspaces

## Misc
* Dropped support for VS Code versions < 1.16.0 (August 2017) so we can use
Node 7.6+, enabling a large refactor to use async/await

# 0.5.1

## What's New
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 10 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"version": "0.5.1",
"publisher": "patbenatar",
"engines": {
"vscode": "^1.5.0"
"vscode": "^1.16.0"
},
"homepage": "https://github.com/patbenatar/vscode-advanced-new-file",
"repository": {
Expand Down Expand Up @@ -38,8 +38,13 @@
"title": "AdvancedNewFile configuration",
"properties": {
"advancedNewFile.exclude": {
"type": ["object", "null"],
"additionalProperties": { "type": "boolean" },
"type": [
"object",
"null"
],
"additionalProperties": {
"type": "boolean"
},
"default": null,
"description": "Directories to ignore in auto-complete"
},
Expand All @@ -56,7 +61,8 @@
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test",
"release": "vsce publish"
"release": "vsce publish",
"lint": "tslint src/**"
},
"devDependencies": {
"@types/chai": "^3.4.34",
Expand Down
Loading