@geins/cms 0.3.5 → 0.3.6
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/.turbo/turbo-build.log +2 -2
- package/CHANGELOG.md +8 -0
- package/dist/index.cjs +0 -1
- package/dist/index.esm.js +0 -1
- package/package.json +2 -2
- package/src/services/menuService.ts +1 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -2,5 +2,5 @@ yarn run v1.22.22
|
|
|
2
2
|
$ rollup -c
|
|
3
3
|
[36m
|
|
4
4
|
[1msrc/index.ts[22m → [1mdist/index.cjs, dist/index.esm.js[22m...[39m
|
|
5
|
-
[32mcreated [1mdist/index.cjs, dist/index.esm.js[22m in [
|
|
6
|
-
Done in 9.
|
|
5
|
+
[32mcreated [1mdist/index.cjs, dist/index.esm.js[22m in [1m9s[22m[39m
|
|
6
|
+
Done in 9.83s.
|
package/CHANGELOG.md
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -22398,7 +22398,6 @@ var MenuService = /** @class */ (function (_super) {
|
|
|
22398
22398
|
};
|
|
22399
22399
|
MenuService.prototype.parseMenuItem = function (item) {
|
|
22400
22400
|
var _this = this;
|
|
22401
|
-
console.log('item', item);
|
|
22402
22401
|
return {
|
|
22403
22402
|
id: item.id,
|
|
22404
22403
|
label: item.label,
|
package/dist/index.esm.js
CHANGED
|
@@ -22396,7 +22396,6 @@ var MenuService = /** @class */ (function (_super) {
|
|
|
22396
22396
|
};
|
|
22397
22397
|
MenuService.prototype.parseMenuItem = function (item) {
|
|
22398
22398
|
var _this = this;
|
|
22399
|
-
console.log('item', item);
|
|
22400
22399
|
return {
|
|
22401
22400
|
id: item.id,
|
|
22402
22401
|
label: item.label,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geins/cms",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.6",
|
|
4
4
|
"main": "dist/index.cjs",
|
|
5
5
|
"module": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"@rollup/plugin-commonjs": "^28.0.0",
|
|
22
22
|
"@rollup/plugin-node-resolve": "^15.3.0",
|
|
23
23
|
"@rollup/plugin-typescript": "^12.1.0",
|
|
24
|
-
"@geins/eslint-config": "0.1.6
|
|
24
|
+
"@geins/eslint-config": "0.1.6",
|
|
25
25
|
"typescript": "^5.6.2",
|
|
26
26
|
"eslint": "^9.11.1"
|
|
27
27
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { MenuVariables } from '@geins/types';
|
|
2
2
|
import { BaseApiService, logWrite } from '@geins/core';
|
|
3
3
|
import { queries } from '../graphql';
|
|
4
|
-
|
|
4
|
+
|
|
5
5
|
export class MenuService extends BaseApiService {
|
|
6
6
|
private async generateVars(variables: MenuVariables) {
|
|
7
7
|
if (!variables.menuLocationId) {
|
|
@@ -42,7 +42,6 @@ export class MenuService extends BaseApiService {
|
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
protected parseMenuItem(item: any): any {
|
|
45
|
-
console.log('item', item);
|
|
46
45
|
return {
|
|
47
46
|
id: item.id,
|
|
48
47
|
label: item.label,
|