@geins/cms 0.3.6 → 0.3.7
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 +2 -2
- package/dist/index.esm.js +2 -2
- package/package.json +2 -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 [1m9.1s[22m[39m
|
|
6
|
+
Done in 9.98s.
|
package/CHANGELOG.md
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -20723,7 +20723,7 @@ var GraphQLService = /** @class */ (function (_super) {
|
|
|
20723
20723
|
return [4 /*yield*/, this.verifyQueryOptions(options)];
|
|
20724
20724
|
case 1:
|
|
20725
20725
|
queryOptions = _b.sent();
|
|
20726
|
-
if (this.log_to_console && this._geinsSettings.environment !== 'prod') {
|
|
20726
|
+
if ((this.log_to_console || options.log_to_console) && this._geinsSettings.environment !== 'prod') {
|
|
20727
20727
|
console.log('[Geins] queryOptions:', queryOptions);
|
|
20728
20728
|
}
|
|
20729
20729
|
_a = this.cleanObject;
|
|
@@ -20753,7 +20753,7 @@ var GraphQLService = /** @class */ (function (_super) {
|
|
|
20753
20753
|
switch (_a.label) {
|
|
20754
20754
|
case 0:
|
|
20755
20755
|
_a.trys.push([0, 2, , 3]);
|
|
20756
|
-
if (this.log_to_console && this._geinsSettings.environment !== 'prod') {
|
|
20756
|
+
if ((this.log_to_console || options.log_to_console) && this._geinsSettings.environment !== 'prod') {
|
|
20757
20757
|
console.log('[Geins] mutation options:', options);
|
|
20758
20758
|
}
|
|
20759
20759
|
return [4 /*yield*/, this.runMutation(options)];
|
package/dist/index.esm.js
CHANGED
|
@@ -20721,7 +20721,7 @@ var GraphQLService = /** @class */ (function (_super) {
|
|
|
20721
20721
|
return [4 /*yield*/, this.verifyQueryOptions(options)];
|
|
20722
20722
|
case 1:
|
|
20723
20723
|
queryOptions = _b.sent();
|
|
20724
|
-
if (this.log_to_console && this._geinsSettings.environment !== 'prod') {
|
|
20724
|
+
if ((this.log_to_console || options.log_to_console) && this._geinsSettings.environment !== 'prod') {
|
|
20725
20725
|
console.log('[Geins] queryOptions:', queryOptions);
|
|
20726
20726
|
}
|
|
20727
20727
|
_a = this.cleanObject;
|
|
@@ -20751,7 +20751,7 @@ var GraphQLService = /** @class */ (function (_super) {
|
|
|
20751
20751
|
switch (_a.label) {
|
|
20752
20752
|
case 0:
|
|
20753
20753
|
_a.trys.push([0, 2, , 3]);
|
|
20754
|
-
if (this.log_to_console && this._geinsSettings.environment !== 'prod') {
|
|
20754
|
+
if ((this.log_to_console || options.log_to_console) && this._geinsSettings.environment !== 'prod') {
|
|
20755
20755
|
console.log('[Geins] mutation options:', options);
|
|
20756
20756
|
}
|
|
20757
20757
|
return [4 /*yield*/, this.runMutation(options)];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geins/cms",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.7",
|
|
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.
|
|
24
|
+
"@geins/eslint-config": "0.1.7",
|
|
25
25
|
"typescript": "^5.6.2",
|
|
26
26
|
"eslint": "^9.11.1"
|
|
27
27
|
}
|