Skip to content

Commit 1ceb660

Browse files
authored
VSCODE-151: Add index key type icons (#150)
1 parent 68770b7 commit 1ceb660

22 files changed

+290
-109
lines changed

.vscodeignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ webpack.config.js
1616
webpack.test.config.js
1717
.eslintrc
1818
.eslintignore
19+
playgrounds/**

azure-pipelines.yml

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
variables:
2-
npm_config_cache: $(Pipeline.Workspace)/.npm
2+
npm_config_cache: $(Pipeline.Workspace)/.npm-cache
33
node_version: '12.4.0'
44

55
trigger:
@@ -29,22 +29,21 @@ steps:
2929
inputs:
3030
versionSpec: $(node_version)
3131
displayName: 'Install node@$(node_version)'
32-
# Proper caching for `npm ci` to be fast
32+
# TODO (rhys): re-enable caching for npm.
33+
# Proper caching for `npm ci` to be fast.
3334
# https://docs.microsoft.com/en-us/azure/devops/pipelines/release/caching?view=azure-devops#nodejsnpm
34-
- task: Cache@2
35-
inputs:
36-
key: 'npm | "$(Agent.OS)" | package-lock.json'
37-
restoreKeys: |
38-
npm | "$(Agent.OS)"
39-
npm
40-
path: $(npm_config_cache)
41-
displayName: Cache npm
35+
# - task: Cache@2
36+
# inputs:
37+
# key: 'npm | "$(Agent.OS)" | package-lock.json'
38+
# restoreKeys: |
39+
# npm | "$(Agent.OS)"
40+
# npm
41+
# path: $(npm_config_cache)
42+
# displayName: Cache npm
4243
# TODO (lucas): Caching `./.vscode-test` in the future would be nice
4344
# so vscode-test isn't downloading the vscode zip everytime. same goes for mongoddb-runner.
44-
- bash: |
45-
46-
npm ci;
47-
displayName: 'Install dependencies from npm'
45+
- task: Npm@1
46+
displayName: 'Install npm dependencies'
4847

4948
- bash: npm run test
5049
displayName: 'Run Tests'

images/dark/index/ascending.svg

Lines changed: 9 additions & 0 deletions
Loading

images/dark/index/descending.svg

Lines changed: 15 additions & 0 deletions
Loading

images/dark/index/geospatial.svg

Lines changed: 6 additions & 0 deletions
Loading

images/dark/index/hashed.svg

Lines changed: 6 additions & 0 deletions
Loading

images/dark/index/text.svg

Lines changed: 8 additions & 0 deletions
Loading

images/dark/indexes.svg

Lines changed: 15 additions & 7 deletions
Loading

images/dark/schema/number.svg

Lines changed: 5 additions & 7 deletions
Loading

images/light/index/ascending.svg

Lines changed: 9 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)