Skip to content

Commit 2cc666e

Browse files
author
Christoph Bühler
committed
Merge branch 'feat/reorganize-v3' into 'master'
feat: organize v3 BREAKING CHANGE: remove indexing. only import grouping / reordering. all the other features are done by vscode itself.
2 parents e8418f4 + 58a4ca1 commit 2cc666e

136 files changed

Lines changed: 12502 additions & 10271 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.appveyor.yml

Lines changed: 0 additions & 28 deletions
This file was deleted.

.github/CONTRIBUTING.md

Lines changed: 0 additions & 27 deletions
This file was deleted.

.github/ISSUE_TEMPLATE.md

Lines changed: 0 additions & 28 deletions
This file was deleted.

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

.gitlab-ci.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
image: node:10
2+
3+
stages:
4+
- test
5+
- release
6+
7+
before_script:
8+
- npm ci
9+
- npm run postinstall
10+
- npm run build
11+
12+
lint:
13+
stage: test
14+
script:
15+
- npm run lint
16+
except:
17+
- tags
18+
19+
test:
20+
stage: test
21+
script:
22+
- npm test
23+
except:
24+
- tags
25+
26+
release:
27+
stage: release
28+
script:
29+
- npx semantic-release
30+
only:
31+
- master

.travis.yml

Lines changed: 0 additions & 98 deletions
This file was deleted.

.vscode/launch.json

Lines changed: 5 additions & 57 deletions
Original file line numberDiff line numberDiff line change
@@ -6,70 +6,20 @@
66
"type": "extensionHost",
77
"request": "launch",
88
"runtimeExecutable": "${execPath}",
9-
"args": [
10-
"${workspaceRoot}/test/etc/workspace_1",
11-
"--extensionDevelopmentPath=${workspaceRoot}"
12-
],
9+
"args": ["${workspaceRoot}/src", "--extensionDevelopmentPath=${workspaceRoot}"],
1310
"env": {
1411
"EXT_DEBUG": "true"
1512
},
1613
"stopOnEntry": false,
1714
"sourceMaps": true,
18-
"outFiles": [
19-
"${workspaceRoot}/out/src/**/*.js"
20-
]
15+
"outFiles": ["${workspaceRoot}/out/src/**/*.js"]
2116
},
2217
{
23-
"name": "Launch Extension Multi-Root",
18+
"name": "Launch Tests",
2419
"type": "extensionHost",
2520
"request": "launch",
2621
"runtimeExecutable": "${execPath}",
27-
"args": [
28-
"${workspaceRoot}/test/etc/multi-root.code-workspace",
29-
"--extensionDevelopmentPath=${workspaceRoot}"
30-
],
31-
"env": {
32-
"EXT_DEBUG": "true"
33-
},
34-
"stopOnEntry": false,
35-
"sourceMaps": true,
36-
"outFiles": [
37-
"${workspaceRoot}/out/src/**/*.js"
38-
]
39-
},
40-
{
41-
"name": "Launch Tests (single Workspace)",
42-
"type": "extensionHost",
43-
"request": "launch",
44-
"runtimeExecutable": "${execPath}",
45-
"args": [
46-
"${workspaceRoot}/test/etc/workspace_1",
47-
"--extensionDevelopmentPath=${workspaceRoot}",
48-
"--extensionTestsPath=${workspaceRoot}/out/test/tests/"
49-
],
50-
"env": {
51-
"EXT_DEBUG": "true",
52-
"LOCAL_TEST": "true",
53-
"COVERAGE": "",
54-
"CHAI_JEST_SNAPSHOT_UPDATE_ALL": ""
55-
},
56-
"stopOnEntry": false,
57-
"sourceMaps": true,
58-
"smartStep": true,
59-
"outFiles": [
60-
"${workspaceRoot}/out/**/*.js"
61-
]
62-
},
63-
{
64-
"name": "Launch Tests (multi-root Workspace)",
65-
"type": "extensionHost",
66-
"request": "launch",
67-
"runtimeExecutable": "${execPath}",
68-
"args": [
69-
"${workspaceRoot}/test/etc/multi-root.code-workspace",
70-
"--extensionDevelopmentPath=${workspaceRoot}",
71-
"--extensionTestsPath=${workspaceRoot}/out/test/tests/"
72-
],
22+
"args": ["--extensionDevelopmentPath=${workspaceRoot}", "--extensionTestsPath=${workspaceRoot}/out/test/"],
7323
"env": {
7424
"EXT_DEBUG": "true",
7525
"LOCAL_TEST": "true",
@@ -79,9 +29,7 @@
7929
"stopOnEntry": false,
8030
"sourceMaps": true,
8131
"smartStep": true,
82-
"outFiles": [
83-
"${workspaceRoot}/out/**/*.js"
84-
]
32+
"outFiles": ["${workspaceRoot}/out/**/*.js"]
8533
}
8634
],
8735
"compounds": []

README.md

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,6 @@
33
TypeScript Hero is a vscode extension that makes your life easier.
44
When you are coding a lot of `TypeScript` you may want vscode to organize your imports.
55

6-
[![Travis build](https://img.shields.io/travis/buehler/typescript-hero.svg)](https://travis-ci.org/buehler/typescript-hero)
7-
[![AppVeyor status](https://ci.appveyor.com/api/projects/status/p1vbbyh69j4s0rbh?svg=true)](https://ci.appveyor.com/project/buehler/typescript-hero)
8-
[![codecov](https://codecov.io/gh/buehler/typescript-hero/branch/master/graph/badge.svg)](https://codecov.io/gh/buehler/typescript-hero)
9-
[![Marketplace](https://vsmarketplacebadge.apphb.com/version-short/rbbit.typescript-hero.svg)](https://marketplace.visualstudio.com/items?itemName=rbbit.typescript-hero)
10-
[![Installs](https://vsmarketplacebadge.apphb.com/installs/rbbit.typescript-hero.svg)](https://marketplace.visualstudio.com/items?itemName=rbbit.typescript-hero)
11-
[![GitHub issues](https://img.shields.io/github/issues/buehler/typescript-hero.svg)](https://github.com/buehler/typescript-hero/issues)
12-
[![GitHub pull requests](https://img.shields.io/github/issues-pr/buehler/typescript-hero.svg)](https://github.com/buehler/typescript-hero/pulls)
13-
[![Semantic release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
14-
[![Greenkeeper](https://badges.greenkeeper.io/buehler/typescript-hero.svg)](https://greenkeeper.io/)
15-
[![License](https://img.shields.io/github/license/buehler/typescript-hero.svg)](https://github.com/buehler/typescript-hero/blob/master/LICENSE)
16-
[![Gitter](https://img.shields.io/gitter/room/vscode-typescript-hero/Lobby.svg)](https://gitter.im/vscode-typescript-hero/Lobby)
17-
186
If you'd like to buy me a beer :-)
197

208
[![Donate](https://img.shields.io/badge/Donate-PayPal-green.svg)](https://paypal.me/rbbit)
@@ -29,8 +17,4 @@ Here is a brief list, of what TypeScript Hero is capable of (more in the wiki):
2917

3018
## Known Issues
3119

32-
Please visit [the issue list](https://github.com/buehler/typescript-hero/issues) :-)
33-
34-
## Documentation
35-
36-
Visit the wiki pages here: [Typescript Hero Wiki](https://github.com/buehler/typescript-hero/wiki)
20+
Please visit [the issue list](https://gitlab.com/smartive/open-source/christoph/typescript-hero/issues) :-)

_config.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

config/tsconfig.base.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"experimentalDecorators": true,
1414
"noUnusedLocals": true,
1515
"noUnusedParameters": true,
16-
"strictNullChecks": true,
16+
"strict": true,
1717
"importHelpers": true,
1818
"removeComments": true
1919
},

0 commit comments

Comments
 (0)