jupyterlab_vscode_icons_extension 1.0.81 → 1.0.84
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.js +11 -0
- package/package.json +1 -1
- package/src/index.ts +11 -0
package/lib/index.js
CHANGED
|
@@ -331,6 +331,17 @@ const fileTypeConfigs = [
|
|
|
331
331
|
iconName: 'file-type-lnk',
|
|
332
332
|
group: 'enableConfigIcons'
|
|
333
333
|
},
|
|
334
|
+
{
|
|
335
|
+
extensions: ['.tf', '.tfvars', '.tfstate'],
|
|
336
|
+
iconName: 'file-type-terraform',
|
|
337
|
+
group: 'enableConfigIcons'
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
pattern: '^(terraform\\.tfvars\\..*|\\.terraform\\.lock\\..*|\\.terraform\\.tfstate\\.lock\\..*)$',
|
|
341
|
+
extensions: [],
|
|
342
|
+
iconName: 'file-type-terraform',
|
|
343
|
+
group: 'enableConfigIcons'
|
|
344
|
+
},
|
|
334
345
|
// Images
|
|
335
346
|
{
|
|
336
347
|
extensions: ['.png', '.jpg', '.jpeg', '.gif', '.ico', '.webp', '.bmp'],
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -364,6 +364,17 @@ const fileTypeConfigs: IFileTypeConfig[] = [
|
|
|
364
364
|
iconName: 'file-type-lnk',
|
|
365
365
|
group: 'enableConfigIcons'
|
|
366
366
|
},
|
|
367
|
+
{
|
|
368
|
+
extensions: ['.tf', '.tfvars', '.tfstate'],
|
|
369
|
+
iconName: 'file-type-terraform',
|
|
370
|
+
group: 'enableConfigIcons'
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
pattern: '^(terraform\\.tfvars\\..*|\\.terraform\\.lock\\..*|\\.terraform\\.tfstate\\.lock\\..*)$',
|
|
374
|
+
extensions: [],
|
|
375
|
+
iconName: 'file-type-terraform',
|
|
376
|
+
group: 'enableConfigIcons'
|
|
377
|
+
},
|
|
367
378
|
|
|
368
379
|
// Images
|
|
369
380
|
{
|