@finos/legend-extension-dsl-text 1.0.18 → 1.0.19
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/CHANGELOG.md +2 -0
- package/lib/index.css +1 -1
- package/lib/package.json +79 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
package/lib/index.css
CHANGED
package/lib/package.json
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@finos/legend-extension-dsl-text",
|
|
3
|
+
"version": "1.0.19",
|
|
4
|
+
"description": "Legend extension for Text DSL",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"legend",
|
|
7
|
+
"legend-extension",
|
|
8
|
+
"dsl",
|
|
9
|
+
"dsl-text"
|
|
10
|
+
],
|
|
11
|
+
"homepage": "https://github.com/finos/legend-studio/tree/master/packages/legend-extension-dsl-text",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/finos/legend-studio/issues"
|
|
14
|
+
},
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "https://github.com/finos/legend-studio.git",
|
|
18
|
+
"directory": "packages/legend-extension-dsl-text"
|
|
19
|
+
},
|
|
20
|
+
"license": "Apache-2.0",
|
|
21
|
+
"sideEffects": false,
|
|
22
|
+
"type": "module",
|
|
23
|
+
"main": "lib/index.js",
|
|
24
|
+
"module": "lib/index.js",
|
|
25
|
+
"types": "lib/index.d.ts",
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "yarn clean && yarn build:sass && yarn build:tsc",
|
|
28
|
+
"build:sass": "cross-env INIT_CWD=$INIT_CWD node ../../scripts/workflow/buildSass.js",
|
|
29
|
+
"build:tsc": "tsc --project ./tsconfig.build.json",
|
|
30
|
+
"clean": "npm-run-all clean:cache clean:lib",
|
|
31
|
+
"clean:cache": "rimraf \"build\"",
|
|
32
|
+
"clean:lib": "rimraf \"lib\"",
|
|
33
|
+
"dev": "npm-run-all --parallel dev:sass dev:tsc",
|
|
34
|
+
"dev:sass": "sass style lib --watch --load-path=../../node_modules/@finos/legend-art/scss",
|
|
35
|
+
"dev:tsc": "tsc --watch --preserveWatchOutput",
|
|
36
|
+
"lint:js": "cross-env NODE_ENV=production eslint --cache --cache-location ./build/.eslintcache --report-unused-disable-directives --parser-options=project:\"./tsconfig.json\" \"./src/**/*.{js,ts,tsx}\"",
|
|
37
|
+
"publish:prepare": "node ../../scripts/release/preparePublishContent.js",
|
|
38
|
+
"publish:snapshot": "node ../../scripts/release/publishDevSnapshot.js",
|
|
39
|
+
"test": "jest",
|
|
40
|
+
"test:watch": "jest --watch"
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"@finos/legend-application": "workspace:*",
|
|
44
|
+
"@finos/legend-art": "workspace:*",
|
|
45
|
+
"@finos/legend-graph": "workspace:*",
|
|
46
|
+
"@finos/legend-model-storage": "workspace:*",
|
|
47
|
+
"@finos/legend-shared": "workspace:*",
|
|
48
|
+
"@finos/legend-studio": "workspace:*",
|
|
49
|
+
"@types/react": "17.0.39",
|
|
50
|
+
"mobx": "6.4.2",
|
|
51
|
+
"mobx-react-lite": "3.3.0",
|
|
52
|
+
"monaco-editor": "0.32.1",
|
|
53
|
+
"react": "17.0.2",
|
|
54
|
+
"serializr": "2.0.5"
|
|
55
|
+
},
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@finos/legend-dev-utils": "workspace:*",
|
|
58
|
+
"cross-env": "7.0.3",
|
|
59
|
+
"eslint": "8.10.0",
|
|
60
|
+
"jest": "27.5.1",
|
|
61
|
+
"npm-run-all": "4.1.5",
|
|
62
|
+
"rimraf": "3.0.2",
|
|
63
|
+
"sass": "1.49.9",
|
|
64
|
+
"typescript": "4.6.2"
|
|
65
|
+
},
|
|
66
|
+
"peerDependencies": {
|
|
67
|
+
"react": "^17.0.0"
|
|
68
|
+
},
|
|
69
|
+
"publishConfig": {
|
|
70
|
+
"directory": "build/publishContent"
|
|
71
|
+
},
|
|
72
|
+
"extensions": {
|
|
73
|
+
"graphPreset": "@finos/legend-graph-preset-dsl-text",
|
|
74
|
+
"pureProtocolProcessorPlugin": "@finos/legend-graph-plugin-dsl-text-pure-protocol-processor",
|
|
75
|
+
"pureGraphManagerPlugin": "@finos/legend-graph-plugin-dsl-text-pure-graph-manager",
|
|
76
|
+
"pureGraphPlugin": "@finos/legend-graph-plugin-dsl-text-pure-graph",
|
|
77
|
+
"studioPlugin": "@finos/legend-studio-plugin-dsl-text"
|
|
78
|
+
}
|
|
79
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@finos/legend-extension-dsl-text",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.19",
|
|
4
4
|
"description": "Legend extension for Text DSL",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"legend",
|
|
@@ -40,12 +40,12 @@
|
|
|
40
40
|
"test:watch": "jest --watch"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@finos/legend-application": "1.2.
|
|
44
|
-
"@finos/legend-art": "0.3.
|
|
45
|
-
"@finos/legend-graph": "1.2.
|
|
46
|
-
"@finos/legend-model-storage": "0.0.
|
|
47
|
-
"@finos/legend-shared": "1.2.
|
|
48
|
-
"@finos/legend-studio": "3.0.
|
|
43
|
+
"@finos/legend-application": "1.2.1",
|
|
44
|
+
"@finos/legend-art": "0.3.8",
|
|
45
|
+
"@finos/legend-graph": "1.2.1",
|
|
46
|
+
"@finos/legend-model-storage": "0.0.21",
|
|
47
|
+
"@finos/legend-shared": "1.2.3",
|
|
48
|
+
"@finos/legend-studio": "3.0.1",
|
|
49
49
|
"@types/react": "17.0.39",
|
|
50
50
|
"mobx": "6.4.2",
|
|
51
51
|
"mobx-react-lite": "3.3.0",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"serializr": "2.0.5"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@finos/legend-dev-utils": "0.3.
|
|
57
|
+
"@finos/legend-dev-utils": "0.3.12",
|
|
58
58
|
"cross-env": "7.0.3",
|
|
59
59
|
"eslint": "8.10.0",
|
|
60
60
|
"jest": "27.5.1",
|