jupyterlab_vscode_icons_extension 1.0.90 → 1.0.92
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 +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
package/lib/index.js
CHANGED
|
@@ -247,7 +247,7 @@ const fileTypeConfigs = [
|
|
|
247
247
|
// Config Files
|
|
248
248
|
{
|
|
249
249
|
extensions: ['.env'],
|
|
250
|
-
pattern: '^(\\.env\\.[^.]+|[^.]+\\.env)$',
|
|
250
|
+
pattern: '^(\\.env\\.(?!zip|tar|gz|bz2|xz|7z|rar)[^.]+|[^.]+\\.env)$',
|
|
251
251
|
iconName: 'file-type-dotenv',
|
|
252
252
|
group: 'enableConfigIcons'
|
|
253
253
|
},
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -279,7 +279,7 @@ const fileTypeConfigs: IFileTypeConfig[] = [
|
|
|
279
279
|
// Config Files
|
|
280
280
|
{
|
|
281
281
|
extensions: ['.env'],
|
|
282
|
-
pattern: '^(\\.env\\.[^.]+|[^.]+\\.env)$',
|
|
282
|
+
pattern: '^(\\.env\\.(?!zip|tar|gz|bz2|xz|7z|rar)[^.]+|[^.]+\\.env)$',
|
|
283
283
|
iconName: 'file-type-dotenv',
|
|
284
284
|
group: 'enableConfigIcons'
|
|
285
285
|
},
|