jupyterlab_vscode_icons_extension 1.0.86 → 1.0.90

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 CHANGED
@@ -247,6 +247,7 @@ const fileTypeConfigs = [
247
247
  // Config Files
248
248
  {
249
249
  extensions: ['.env'],
250
+ pattern: '^(\\.env\\.[^.]+|[^.]+\\.env)$',
250
251
  iconName: 'file-type-dotenv',
251
252
  group: 'enableConfigIcons'
252
253
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jupyterlab_vscode_icons_extension",
3
- "version": "1.0.86",
3
+ "version": "1.0.90",
4
4
  "description": "Jupyterlab extension with a shameless rip-off of the vscode-icons into our beloved environment",
5
5
  "keywords": [
6
6
  "jupyter",
package/src/index.ts CHANGED
@@ -279,6 +279,7 @@ const fileTypeConfigs: IFileTypeConfig[] = [
279
279
  // Config Files
280
280
  {
281
281
  extensions: ['.env'],
282
+ pattern: '^(\\.env\\.[^.]+|[^.]+\\.env)$',
282
283
  iconName: 'file-type-dotenv',
283
284
  group: 'enableConfigIcons'
284
285
  },