q2-tecton-platform 1.31.0 → 1.32.0
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/dist/esm/private-helpers/resolveFeature.d.ts +5 -3
- package/dist/esm/private-helpers/resolveFeature.d.ts.map +1 -1
- package/dist/esm/private-helpers/resolveFeature.js +16 -8
- package/dist/esm/private-helpers/resolveMenu.d.ts +1 -1
- package/dist/esm/private-helpers/resolveMenu.d.ts.map +1 -1
- package/dist/esm/private-helpers/resolveMenu.js +6 -3
- package/dist/esm/private-helpers/resolveTabs.d.ts +4 -3
- package/dist/esm/private-helpers/resolveTabs.d.ts.map +1 -1
- package/dist/esm/private-helpers/resolveTabs.js +6 -3
- package/dist/esm/types/config.d.ts +1 -0
- package/dist/esm/types/config.d.ts.map +1 -1
- package/dist/umd/q2-tecton-platform.js +1 -1
- package/package.json +21 -23
package/package.json
CHANGED
@@ -1,36 +1,34 @@
|
|
1
1
|
{
|
2
2
|
"name": "q2-tecton-platform",
|
3
|
-
"version": "1.
|
4
|
-
"description": "",
|
3
|
+
"version": "1.32.0",
|
4
|
+
"description": "This library is the \"server\" in the \"client/server\" pair of the SDK and Platform. Responsible for booting modules and responding to requests from the SDK.",
|
5
|
+
"license": "MIT",
|
6
|
+
"author": "Q2 Tecton Team",
|
5
7
|
"main": "./dist/umd/q2-tecton-platform.js",
|
6
8
|
"types": "./dist/esm/index.d.ts",
|
9
|
+
"files": [
|
10
|
+
"dist"
|
11
|
+
],
|
7
12
|
"publishConfig": {
|
8
|
-
"
|
9
|
-
"
|
13
|
+
"access": "public",
|
14
|
+
"registry": "https://registry.npmjs.org"
|
10
15
|
},
|
11
16
|
"scripts": {
|
12
17
|
"build": "yarn build:prod",
|
13
|
-
"build:umd": "webpack",
|
14
|
-
"build:types": "tsc --project tsconfig.prod.json && resolve-tspaths",
|
15
|
-
"build:prod": "rm -rf dist && yarn build:types && yarn build:umd --mode production",
|
16
18
|
"build:dev": "rm -rf dist && yarn build:types && yarn build:umd --mode development",
|
17
|
-
"
|
18
|
-
"
|
19
|
-
"
|
20
|
-
"docs": "typedoc --out docs/ src/ --module amd --target ES6",
|
21
|
-
"problems": "tsc --noEmit",
|
19
|
+
"build:prod": "rm -rf dist && yarn build:types && yarn build:umd --mode production",
|
20
|
+
"build:types": "tsc --project tsconfig.prod.json && resolve-tspaths",
|
21
|
+
"build:umd": "webpack",
|
22
22
|
"clean": "rm -rf dist",
|
23
|
+
"docs": "typedoc --out docs/ src/ --module amd --target ES6",
|
23
24
|
"fmt": "prettier -l 'src/**/*.ts*' 'test/**/*.ts*' '*.js*'",
|
24
25
|
"fmt:fix": "prettier --write 'src/**/*.ts*' 'test/**/*.ts*' '*.js*'",
|
25
26
|
"lint": "tslint --project ./tsconfig.json",
|
26
|
-
"lint:fix": "tslint --fix --project ./tsconfig.json"
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
"
|
31
|
-
],
|
32
|
-
"dependencies": {
|
33
|
-
"maybe-not": "1.3.3"
|
27
|
+
"lint:fix": "tslint --fix --project ./tsconfig.json",
|
28
|
+
"problems": "tsc --noEmit",
|
29
|
+
"test": "karma start --single-run --browsers chrome_headless --port 7003",
|
30
|
+
"test:dev": "karma start",
|
31
|
+
"test:sequenced": "yarn test --concurrency=1"
|
34
32
|
},
|
35
33
|
"devDependencies": {
|
36
34
|
"@babel/core": "^7.20.2",
|
@@ -39,7 +37,7 @@
|
|
39
37
|
"@types/mocha": "^7.0.2",
|
40
38
|
"@types/sinon": "^7.5.2",
|
41
39
|
"babel-loader": "^9.1.0",
|
42
|
-
"dry-suite": "1.
|
40
|
+
"dry-suite": "1.32.0",
|
43
41
|
"karma": "^6.4.1",
|
44
42
|
"karma-chai": "^0.1.0",
|
45
43
|
"karma-chrome-launcher": "^3.1.1",
|
@@ -53,7 +51,7 @@
|
|
53
51
|
"karma-typescript-es6-transform": "^5.5.3",
|
54
52
|
"maybe-not": "~1.3.3",
|
55
53
|
"prettier": "^2.6.2",
|
56
|
-
"q2-tecton-common": "1.
|
54
|
+
"q2-tecton-common": "1.32.0",
|
57
55
|
"resolve-tspaths": "^0.8.3",
|
58
56
|
"rxjs": "6.6.7",
|
59
57
|
"rxjs-tslint": "^0.1.8",
|
@@ -63,5 +61,5 @@
|
|
63
61
|
"tslint": "^6.1.3",
|
64
62
|
"tslint-config-prettier": "^1.18.0"
|
65
63
|
},
|
66
|
-
"gitHead": "
|
64
|
+
"gitHead": "1468fef3e634c1cf577a184dc76febb8f88d62ea"
|
67
65
|
}
|