forked from vscode-icons/vscode-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ce692b5
commit 6f57fbb
Showing
133 changed files
with
10,562 additions
and
13,325 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,34 @@ | ||
version: '#{build}' | ||
image: Visual Studio 2017 | ||
clone_depth: 5 | ||
skip_tags: true | ||
build: off | ||
environment: | ||
# Define versions of Node.js | ||
matrix: | ||
- node_js: '' # latest node | ||
- node_js: 10.2.0 # vscode >= 1.31.0 | ||
- node_js: 8.9.3 # vscode >= 1.26.0 < 1.31.0 | ||
- node_js: 7.9.0 # vscode >= 1.16.0 < 1.26.0 | ||
- node_js: '' # latest node | ||
- node_js: 10.11.0 # vscode >= 1.36.0 | ||
- node_js: 10.2.0 # vscode >= 1.31.0 < 1.36.0 | ||
- node_js: 8.9.3 # vscode >= 1.26.0 < 1.31.0 | ||
matrix: | ||
fast_finish: true | ||
allow_failures: | ||
- node_js: '' | ||
# Define platforms | ||
platform: | ||
- x64 | ||
cache: | ||
# - node_modules | ||
init: | ||
# Install the platform version of Node.js | ||
- ps: Install-Product node $env:node_js $env:platform | ||
# Output useful info for debugging | ||
- node --version | ||
- npm --version | ||
- yarn --version | ||
- ps: $PSVersionTable.PSVersion -f '' | ||
install: | ||
# Install the latest version of Yarn | ||
- ps: curl -o $env:temp\install.ps1 https://raw.githubusercontent.com/JimiC/ps-yarn-install/master/install.ps1 | powershell $env:temp\install.ps1 | ||
# Install modules | ||
- yarn install | ||
cache: | ||
# - node_modules | ||
- '%LOCALAPPDATA%\Yarn' | ||
before_test: | ||
# install coverage reporters | ||
- npm i codeclimate-test-reporter codecov --no-save | ||
# run postinstall again to ensure that 'vscode.d.ts' is installed | ||
- npm run postinstall | ||
# Instal dependencies | ||
- npm install | ||
test_script: | ||
# run test script | ||
# Run test script | ||
- npm test | ||
after_test: | ||
# send coverage report | ||
- ps: If ($env:CODECLIMATE_REPO_TOKEN -ne $null) { gc .\coverage\lcov.info | & .\node_modules\.bin\codeclimate-test-reporter } | ||
- ps: If ($env:CODECOV_TOKEN -ne $null) { .\node_modules\.bin\codecov --disable=gcov } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"hooks": { | ||
"pre-commit": "npm run lint-staged" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"src/**/*.ts": ["prettier --write", "tslint", "git add"], | ||
"test/**/*.ts": ["prettier --write", "tslint --fix", "git add"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"spec": "./out/test/**/*.test.js", | ||
"ui": "bdd", | ||
"exit": true, | ||
"colors": true, | ||
"recursive": true, | ||
"retries": 2, | ||
"timeout": 15000 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
* | ||
*/ | ||
!icons/ | ||
!dist/**/*bundle*.js | ||
!*bundle.json | ||
!package.nls*.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"exclude": ["!test/**"], | ||
"exclude-after-remap": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,11 @@ | ||
.*/ | ||
coverage | ||
examples | ||
images/*.gif | ||
images/*.svg | ||
src | ||
submodules | ||
test | ||
out/test | ||
.* | ||
**/*.map | ||
*.lcov | ||
*.lock | ||
*.log | ||
*.vsix | ||
*.yml | ||
*lock.json | ||
*.template.json | ||
ts*.json | ||
wallaby.* | ||
* | ||
*/ | ||
!dist/ | ||
!icons/ | ||
!images/*.png | ||
!*bundle.json | ||
!package.nls*.json | ||
!*.md | ||
!LICENSE | ||
!.integrity.json | ||
!.nsriignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"ignore": [ | ||
"@types/node" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.