@gooddata/plugin-toolkit 11.20.0-alpha.0 → 11.20.0-alpha.1
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/NOTICE +1 -1
- package/esm/__version.d.ts +1 -1
- package/esm/__version.js +1 -1
- package/esm/dashboard-plugin-template.js.tgz +0 -0
- package/esm/dashboard-plugin-template.ts.tgz +0 -0
- package/package.json +11 -15
package/NOTICE
CHANGED
|
@@ -9,7 +9,7 @@ The following 3rd-party software packages may be used by or distributed with goo
|
|
|
9
9
|
|
|
10
10
|
Date generated: 2026-2-6
|
|
11
11
|
|
|
12
|
-
Revision ID:
|
|
12
|
+
Revision ID: a70c0f028a74a06097441e3f41734ea909e32195
|
|
13
13
|
|
|
14
14
|
================================================================================
|
|
15
15
|
================================================================================
|
package/esm/__version.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const LIB_VERSION = "11.20.0-alpha.
|
|
1
|
+
export declare const LIB_VERSION = "11.20.0-alpha.1";
|
|
2
2
|
export declare const LIB_DESCRIPTION = "GoodData Set of Tools for working with Plugins";
|
|
3
3
|
export declare const LIB_NAME = "@gooddata/plugin-toolkit";
|
|
4
4
|
//# sourceMappingURL=__version.d.ts.map
|
package/esm/__version.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// (C) 2021 GoodData Corporation
|
|
2
2
|
// DO NOT CHANGE THIS FILE, IT IS RE-GENERATED ON EVERY BUILD
|
|
3
|
-
export const LIB_VERSION = "11.20.0-alpha.
|
|
3
|
+
export const LIB_VERSION = "11.20.0-alpha.1";
|
|
4
4
|
export const LIB_DESCRIPTION = "GoodData Set of Tools for working with Plugins";
|
|
5
5
|
export const LIB_NAME = "@gooddata/plugin-toolkit";
|
|
6
6
|
//# sourceMappingURL=__version.js.map
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gooddata/plugin-toolkit",
|
|
3
|
-
"version": "11.20.0-alpha.
|
|
3
|
+
"version": "11.20.0-alpha.1",
|
|
4
4
|
"description": "GoodData Set of Tools for working with Plugins",
|
|
5
5
|
"license": "LicenseRef-LICENSE",
|
|
6
6
|
"author": "GoodData",
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
"tar": "^6.2.1",
|
|
46
46
|
"tslib": "2.8.1",
|
|
47
47
|
"validate-npm-package-name": "^5.0.0",
|
|
48
|
-
"@gooddata/sdk-backend-
|
|
49
|
-
"@gooddata/sdk-
|
|
50
|
-
"@gooddata/sdk-
|
|
48
|
+
"@gooddata/sdk-backend-spi": "11.20.0-alpha.1",
|
|
49
|
+
"@gooddata/sdk-backend-tiger": "11.20.0-alpha.1",
|
|
50
|
+
"@gooddata/sdk-model": "11.20.0-alpha.1"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@types/columnify": "^1.5.1",
|
|
@@ -74,8 +74,8 @@
|
|
|
74
74
|
"oxlint-tsgolint": "0.11.4",
|
|
75
75
|
"typescript": "5.9.3",
|
|
76
76
|
"vitest": "4.0.8",
|
|
77
|
-
"@gooddata/eslint-config": "11.20.0-alpha.
|
|
78
|
-
"@gooddata/oxlint-config": "11.20.0-alpha.
|
|
77
|
+
"@gooddata/eslint-config": "11.20.0-alpha.1",
|
|
78
|
+
"@gooddata/oxlint-config": "11.20.0-alpha.1"
|
|
79
79
|
},
|
|
80
80
|
"scripts": {
|
|
81
81
|
"_phase:build": "npm run build",
|
|
@@ -86,16 +86,12 @@
|
|
|
86
86
|
"build-dynamic-files": "bash scripts/build.sh --genFilesOnly",
|
|
87
87
|
"clean": "../../common/scripts/clean-command-state.sh && rm -rf ci dist esm build coverage *.log tsconfig.tsbuildinfo",
|
|
88
88
|
"dep-cruiser": "depcruise --validate .dependency-cruiser.cjs --output-type err-long src/",
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
"oxfmt-check": "oxfmt --check .",
|
|
92
|
-
"oxfmt-write": "oxfmt .",
|
|
89
|
+
"format-check": "oxfmt --check .",
|
|
90
|
+
"format-write": "oxfmt .",
|
|
93
91
|
"test": "vitest watch",
|
|
94
92
|
"test-once": "vitest run",
|
|
95
|
-
"validate": "npm run dep-cruiser && npm run lint && npm run
|
|
96
|
-
"lint": "
|
|
97
|
-
"lint-fix": "
|
|
98
|
-
"oxlint": "oxlint . --type-aware",
|
|
99
|
-
"oxlint-fix": "oxlint . --type-aware --fix"
|
|
93
|
+
"validate": "npm run dep-cruiser && npm run lint && npm run format-check",
|
|
94
|
+
"lint": "oxlint . --type-aware && eslint src",
|
|
95
|
+
"lint-fix": "oxlint . --type-aware --fix && eslint src --fix"
|
|
100
96
|
}
|
|
101
97
|
}
|