@gooddata/sdk-embedding 10.41.0-alpha.2 → 10.41.0-alpha.4
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/package.json +16 -16
package/package.json
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@gooddata/sdk-embedding",
|
3
|
-
"version": "10.41.0-alpha.
|
4
|
-
"author": "GoodData",
|
3
|
+
"version": "10.41.0-alpha.4",
|
5
4
|
"description": "GoodData Embedding APIs",
|
6
5
|
"repository": {
|
7
6
|
"type": "git",
|
@@ -9,16 +8,17 @@
|
|
9
8
|
"directory": "libs/sdk-embedding"
|
10
9
|
},
|
11
10
|
"license": "MIT",
|
11
|
+
"author": "GoodData",
|
12
|
+
"sideEffects": [
|
13
|
+
"esm/internal/messagingUtils.js"
|
14
|
+
],
|
12
15
|
"type": "module",
|
13
|
-
"browser": "./esm/index.js",
|
14
16
|
"exports": {
|
15
17
|
".": "./esm/index.js",
|
16
18
|
"./internal": "./esm/internal/index.js"
|
17
19
|
},
|
20
|
+
"browser": "./esm/index.js",
|
18
21
|
"types": "./esm/index.d.ts",
|
19
|
-
"sideEffects": [
|
20
|
-
"esm/internal/messagingUtils.js"
|
21
|
-
],
|
22
22
|
"files": [
|
23
23
|
"esm/**/*.js",
|
24
24
|
"esm/**/*.json",
|
@@ -27,9 +27,9 @@
|
|
27
27
|
],
|
28
28
|
"dependencies": {
|
29
29
|
"lodash": "^4.17.21",
|
30
|
-
"tslib": "2.8.1",
|
31
30
|
"ts-invariant": "^0.7.5",
|
32
|
-
"
|
31
|
+
"tslib": "2.8.1",
|
32
|
+
"@gooddata/sdk-model": "10.41.0-alpha.4"
|
33
33
|
},
|
34
34
|
"devDependencies": {
|
35
35
|
"@gooddata/eslint-config": "^4.1.1",
|
@@ -59,19 +59,19 @@
|
|
59
59
|
"_phase:build": "npm run build",
|
60
60
|
"_phase:test": "npm run test-once",
|
61
61
|
"_phase:validate": "npm run validate",
|
62
|
-
"clean": "../../common/scripts/clean-command-state.sh && rm -rf ci dist esm coverage *.log tsconfig.tsbuildinfo",
|
63
|
-
"build": "tsc -p tsconfig.build.json && npm run api-extractor",
|
64
62
|
"api-extractor": "mkdir -p api && [ -z \"${CI}\" ] && (api-extractor run -l) || (api-extractor run)",
|
65
|
-
"
|
66
|
-
"
|
67
|
-
"
|
63
|
+
"build": "tsc -p tsconfig.build.json && npm run api-extractor",
|
64
|
+
"clean": "../../common/scripts/clean-command-state.sh && rm -rf ci dist esm coverage *.log tsconfig.tsbuildinfo",
|
65
|
+
"dep-cruiser": "depcruise --validate .dependency-cruiser.cjs --output-type err-long src/",
|
66
|
+
"dep-cruiser-ci": "depcruise --validate .dependency-cruiser.cjs --output-type err-long src/",
|
68
67
|
"eslint": "eslint -c .eslintrc.cjs src/",
|
69
|
-
"eslint-fix": "eslint -c .eslintrc.cjs src/ --fix",
|
70
68
|
"eslint-ci": "mkdir -p ./ci/results && eslint -f checkstyle -o ci/results/eslint-results.xml -c .eslintrc.cjs src/",
|
69
|
+
"eslint-fix": "eslint -c .eslintrc.cjs src/ --fix",
|
71
70
|
"prettier-check": "prettier --check '{src,test}/**/*.{ts,tsx,json,scss,md,yaml,html}'",
|
72
71
|
"prettier-write": "prettier --write '{src,test}/**/*.{ts,tsx,json,scss,md,yaml,html}'",
|
73
|
-
"
|
74
|
-
"
|
72
|
+
"test": "vitest watch",
|
73
|
+
"test-ci": "vitest run --reporter=junit --outputFile=./ci/results/test-results.xml",
|
74
|
+
"test-once": "vitest run",
|
75
75
|
"validate": "tsc && npm run dep-cruiser && npm run eslint && npm run prettier-check",
|
76
76
|
"validate-esm": "node --input-type=module --eval 'import \"@gooddata/sdk-embedding\"' "
|
77
77
|
}
|