Skip to content
This repository has been archived by the owner on Oct 10, 2018. It is now read-only.

Commit

Permalink
Merge pull request #417 from buehler/develop
Browse files Browse the repository at this point in the history
Release
  • Loading branch information
buehler committed Mar 6, 2018
2 parents 8ca3cd5 + 3d36a83 commit cf0c73f
Show file tree
Hide file tree
Showing 212 changed files with 4,579 additions and 11,990 deletions.
14 changes: 6 additions & 8 deletions .vscode/launch.json
Expand Up @@ -50,15 +50,14 @@
"env": {
"EXT_DEBUG": "true",
"LOCAL_TEST": "true",
"COVERAGE": "true",
"CHAI_JEST_SNAPSHOT_UPDATE_ALL": "true"
"COVERAGE": "",
"CHAI_JEST_SNAPSHOT_UPDATE_ALL": ""
},
"stopOnEntry": false,
"sourceMaps": true,
"smartStep": true,
"outFiles": [
"${workspaceRoot}/out/src/**/*.js",
"${workspaceRoot}/out/test/tests/**/*.js"
"${workspaceRoot}/out/**/*.js"
]
},
{
Expand All @@ -74,15 +73,14 @@
"env": {
"EXT_DEBUG": "true",
"LOCAL_TEST": "true",
"COVERAGE": "true",
"CHAI_JEST_SNAPSHOT_UPDATE_ALL": "true"
"COVERAGE": "",
"CHAI_JEST_SNAPSHOT_UPDATE_ALL": ""
},
"stopOnEntry": false,
"sourceMaps": true,
"smartStep": true,
"outFiles": [
"${workspaceRoot}/out/src/**/*.js",
"${workspaceRoot}/out/test/tests/**/*.js"
"${workspaceRoot}/out/**/*.js"
]
}
],
Expand Down
2 changes: 1 addition & 1 deletion .vscodeignore
Expand Up @@ -9,7 +9,7 @@ prepare-release.js
config/**
test/**
src/**
!src/extension/assets/**
!src/assets/**
tsconfig.json
tslint.json
coverage/**
Expand Down
7 changes: 6 additions & 1 deletion README.md
Expand Up @@ -21,11 +21,16 @@ If you'd like to buy me a beer :-)

## Features at a glance

Here is a brief list, of what TypeScript Hero is capable of (more at the end):
Here is a brief list, of what TypeScript Hero is capable of (more in the wiki):

- Sort and organize your imports (sort and remove unused)
- Code outline view of your open TS / TSX document
- Add import to the document or add an import that is under the cursor to the document

## Known Issues

Please visit [the issue list](https://github.com/buehler/typescript-hero/issues) :-)

## Documentation

Visit the wiki pages here: [Typescript Hero Wiki](https://github.com/buehler/typescript-hero/wiki)
3 changes: 0 additions & 3 deletions config/tsconfig.base.json
Expand Up @@ -19,8 +19,5 @@
},
"include": [
"../src/**/*"
],
"exclude": [
"../src/_old"
]
}
2 changes: 0 additions & 2 deletions config/tsconfig.test-multi-workspace.json
Expand Up @@ -8,8 +8,6 @@
"../test/**/*"
],
"exclude": [
"../src/_old",
"../test/_old",
"../test/etc",
"../test/**/*.single.test.ts"
]
Expand Down
2 changes: 0 additions & 2 deletions config/tsconfig.test-single-workspace.json
Expand Up @@ -8,8 +8,6 @@
"../test/**/*"
],
"exclude": [
"../src/_old",
"../test/_old",
"../test/etc",
"../test/**/*.multi.test.ts"
]
Expand Down
33 changes: 20 additions & 13 deletions package.json
Expand Up @@ -62,6 +62,8 @@
"clean": "del-cli ./out ./coverage",
"build": "npm run clean && tsc -p ./config/tsconfig.build.json",
"develop": "npm run clean && tsc -p .",
"develop:test-single": "npm run clean && tsc -p ./config/tsconfig.test-single-workspace.json --watch",
"develop:test-multi": "npm run clean && tsc -p ./config/tsconfig.test-multi-workspace.json --watch",
"lint": "tslint -c ./tslint.json -p ./config/tsconfig.build.json",
"test:single-workspace": "npm run lint && npm run clean && tsc -p ./config/tsconfig.test-single-workspace.json && node ./node_modules/vscode/bin/test",
"test:multi-workspace": "npm run lint && npm run clean && tsc -p ./config/tsconfig.test-multi-workspace.json && node ./node_modules/vscode/bin/test",
Expand All @@ -85,13 +87,13 @@
]
},
"devDependencies": {
"@smartive/tslint-config": "^2.0.0",
"@smartive/tslint-config": "^2.1.0",
"@types/chai": "^4.1.2",
"@types/istanbul": "^0.4.29",
"@types/mocha": "^2.2.48",
"@types/node": "^9.4.0",
"@types/node": "^9.4.6",
"@types/reflect-metadata": "0.1.0",
"@types/sinon": "^4.1.3",
"@types/sinon": "^4.3.0",
"@types/sinon-chai": "^2.7.29",
"chai": "^4.1.2",
"chai-jest-snapshot": "^2.0.0",
Expand All @@ -101,19 +103,19 @@
"remap-istanbul": "^0.10.1",
"semantic-release": "^12.4.1",
"semantic-release-vsce": "^2.0.0",
"sinon": "^4.2.2",
"sinon-chai": "^2.14.0",
"sinon": "^4.4.2",
"sinon-chai": "^3.0.0",
"tslint": "^5.9.1",
"tsutils": "^2.21.0",
"tsutils": "^2.22.2",
"vscode": "^1.1.10"
},
"dependencies": {
"fs-extra": "^5.0.0",
"inversify": "^4.10.0",
"inversify": "^4.11.1",
"reflect-metadata": "^0.1.12",
"tslib": "^1.9.0",
"typescript": "~2.7.1",
"typescript-parser": "^2.2.2",
"typescript": "~2.7.2",
"typescript-parser": "^2.3.0",
"winston": "^3.0.0-rc1"
},
"activationEvents": [
Expand All @@ -135,10 +137,6 @@
{
"command": "typescriptHero.imports.organize",
"title": "TS Hero: Organize imports (sort and remove unused)"
},
{
"command": "typescriptHero.codeOutline.gotoNode",
"title": "TS Hero (internal): Jump to the given nodes location"
}
],
"keybindings": [
Expand Down Expand Up @@ -181,6 +179,15 @@
"description": "Defines the log output level in the output window. In the log file, it's always info or debug.",
"scope": "window"
},
"typescriptHero.codeCompletion.completionSortMode": {
"enum": [
"default",
"bottom"
],
"default": "default",
"description": "Defines the sortmode of the code completion in intellisense (bottom means sorted to bottom).",
"scope": "resource"
},
"typescriptHero.codeOutline.enabled": {
"type": "boolean",
"default": true,
Expand Down
28 changes: 0 additions & 28 deletions src/_old/common/config/CodeCompletionConfig.ts

This file was deleted.

27 changes: 0 additions & 27 deletions src/_old/common/config/CodeOutlineConfig.ts

This file was deleted.

68 changes: 0 additions & 68 deletions src/_old/common/config/ExtensionConfig.ts

This file was deleted.

0 comments on commit cf0c73f

Please sign in to comment.