@finos/legend-application-pure-ide 8.0.244 → 8.0.246

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.
@@ -1,4 +1,4 @@
1
- /** @license @finos/legend-application-pure-ide v8.0.244
1
+ /** @license @finos/legend-application-pure-ide v8.0.246
2
2
  * Copyright (c) 2020-present, Goldman Sachs
3
3
  *
4
4
  * Licensed under the Apache License, Version 2.0 (the "License");
package/lib/index.css CHANGED
@@ -1,4 +1,4 @@
1
- /** @license @finos/legend-application-pure-ide v8.0.244
1
+ /** @license @finos/legend-application-pure-ide v8.0.246
2
2
  * Copyright (c) 2020-present, Goldman Sachs
3
3
  *
4
4
  * Licensed under the Apache License, Version 2.0 (the "License");
package/lib/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finos/legend-application-pure-ide",
3
- "version": "8.0.244",
3
+ "version": "8.0.246",
4
4
  "description": "Legend Pure IDE application core",
5
5
  "keywords": [
6
6
  "legend",
@@ -64,11 +64,11 @@
64
64
  "@finos/legend-dev-utils": "workspace:*",
65
65
  "@jest/globals": "29.7.0",
66
66
  "cross-env": "7.0.3",
67
- "eslint": "9.13.0",
67
+ "eslint": "9.14.0",
68
68
  "jest": "29.7.0",
69
69
  "npm-run-all": "4.1.5",
70
70
  "rimraf": "6.0.1",
71
- "sass": "1.80.5",
71
+ "sass": "1.80.7",
72
72
  "typescript": "5.6.3"
73
73
  },
74
74
  "peerDependencies": {
@@ -159,7 +159,7 @@ export const setupTerminal = (ideStore) => {
159
159
  handler: async (args) => {
160
160
  const path = args[0];
161
161
  if (!path ||
162
- !(path.match(FILE_PATH_PATTERN) || path.match(PACKAGE_PATH_PATTERN))) {
162
+ !(path.match(FILE_PATH_PATTERN) ?? path.match(PACKAGE_PATH_PATTERN))) {
163
163
  ideStore.applicationStore.terminalService.terminal.fail(`command requires a valid directory or concept path`);
164
164
  return;
165
165
  }
@@ -191,8 +191,8 @@ export const setupTerminal = (ideStore) => {
191
191
  handler: async (args) => {
192
192
  const path = args[0];
193
193
  if (!path ||
194
- !(path.match(FILE_PATH_PATTERN) ||
195
- path.match(PACKAGE_PATH_PATTERN) ||
194
+ !(path.match(FILE_PATH_PATTERN) ??
195
+ path.match(PACKAGE_PATH_PATTERN) ??
196
196
  [HOME_DIRECTORY_PATH, ROOT_PACKAGE_PATH].includes(path))) {
197
197
  ideStore.applicationStore.terminalService.terminal.fail(`command requires a valid directory or package path`);
198
198
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finos/legend-application-pure-ide",
3
- "version": "8.0.244",
3
+ "version": "8.0.246",
4
4
  "description": "Legend Pure IDE application core",
5
5
  "keywords": [
6
6
  "legend",
@@ -43,13 +43,13 @@
43
43
  "test:watch": "jest --watch"
44
44
  },
45
45
  "dependencies": {
46
- "@finos/legend-application": "16.0.8",
47
- "@finos/legend-art": "7.1.66",
48
- "@finos/legend-code-editor": "2.0.12",
49
- "@finos/legend-extension-dsl-diagram": "8.1.27",
50
- "@finos/legend-graph": "31.10.46",
51
- "@finos/legend-lego": "2.0.14",
52
- "@finos/legend-shared": "10.0.59",
46
+ "@finos/legend-application": "16.0.9",
47
+ "@finos/legend-art": "7.1.67",
48
+ "@finos/legend-code-editor": "2.0.14",
49
+ "@finos/legend-extension-dsl-diagram": "8.1.29",
50
+ "@finos/legend-graph": "31.10.48",
51
+ "@finos/legend-lego": "2.0.16",
52
+ "@finos/legend-shared": "10.0.60",
53
53
  "@types/react": "18.3.12",
54
54
  "@types/react-dom": "18.3.1",
55
55
  "mobx": "6.13.5",
@@ -61,14 +61,14 @@
61
61
  "serializr": "3.0.3"
62
62
  },
63
63
  "devDependencies": {
64
- "@finos/legend-dev-utils": "2.1.27",
64
+ "@finos/legend-dev-utils": "2.1.28",
65
65
  "@jest/globals": "29.7.0",
66
66
  "cross-env": "7.0.3",
67
- "eslint": "9.13.0",
67
+ "eslint": "9.14.0",
68
68
  "jest": "29.7.0",
69
69
  "npm-run-all": "4.1.5",
70
70
  "rimraf": "6.0.1",
71
- "sass": "1.80.5",
71
+ "sass": "1.80.7",
72
72
  "typescript": "5.6.3"
73
73
  },
74
74
  "peerDependencies": {
@@ -218,7 +218,7 @@ export const setupTerminal = (ideStore: PureIDEStore): void => {
218
218
  const path = args[0];
219
219
  if (
220
220
  !path ||
221
- !(path.match(FILE_PATH_PATTERN) || path.match(PACKAGE_PATH_PATTERN))
221
+ !(path.match(FILE_PATH_PATTERN) ?? path.match(PACKAGE_PATH_PATTERN))
222
222
  ) {
223
223
  ideStore.applicationStore.terminalService.terminal.fail(
224
224
  `command requires a valid directory or concept path`,
@@ -260,8 +260,8 @@ export const setupTerminal = (ideStore: PureIDEStore): void => {
260
260
  if (
261
261
  !path ||
262
262
  !(
263
- path.match(FILE_PATH_PATTERN) ||
264
- path.match(PACKAGE_PATH_PATTERN) ||
263
+ path.match(FILE_PATH_PATTERN) ??
264
+ path.match(PACKAGE_PATH_PATTERN) ??
265
265
  [HOME_DIRECTORY_PATH, ROOT_PACKAGE_PATH].includes(path)
266
266
  )
267
267
  ) {