@takeshape/cli 11.73.0 → 11.74.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/dist/config.d.ts +1 -2
- package/dist/config.d.ts.map +1 -1
- package/dist/log.d.ts.map +1 -1
- package/dist/log.js +1 -0
- package/dist/util/connector.d.ts +1 -1
- package/package.json +6 -6
package/dist/config.d.ts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import type meow from 'meow';
|
|
2
2
|
import type { AnyFlags } from 'meow';
|
|
3
3
|
import type { Choice } from './prompt';
|
|
4
|
-
import type { CliConfig } from './types';
|
|
5
|
-
import type { ApiKey } from './types';
|
|
4
|
+
import type { ApiKey, CliConfig } from './types';
|
|
6
5
|
import type { PersonalAccessToken } from './util/data';
|
|
7
6
|
export declare const TAKESHAPE_CONFIG_FILENAME = ".takeshaperc";
|
|
8
7
|
export declare const GRAPHQL_CONFIG_FILENAME = ".graphqlconfig";
|
package/dist/config.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../src/config.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,IAAI,MAAM,MAAM,CAAC;AAC7B,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,MAAM,CAAC;AAErC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AACvC,OAAO,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../src/config.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,IAAI,MAAM,MAAM,CAAC;AAC7B,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,MAAM,CAAC;AAErC,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AACvC,OAAO,KAAK,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAGjD,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAC;AAIvD,eAAO,MAAM,yBAAyB,iBAAiB,CAAC;AACxD,eAAO,MAAM,uBAAuB,mBAAmB,CAAC;AAExD,wBAAgB,iBAAiB,IAAI,MAAM,CAE1C;AAED,wBAAgB,UAAU,CAAC,GAAG,EAAE,MAAM,EAAE,GAAG,EAAE,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,GAAG,SAAS,CA6B7E;AAWD,wBAAsB,wBAAwB,CAC5C,MAAM,EAAE,SAAS,EACjB,YAAY,EAAE,MAAM,EACpB,OAAO,EAAE,MAAM,EACf,IAAI,EAAE,MAAM,GAAG,SAAS,GACvB,OAAO,CAAC,IAAI,CAAC,CA6Cf;AAED,wBAAgB,kBAAkB,SAQjC;AAED,wBAAsB,eAAe,CAAC,WAAW,EAAE,mBAAmB,GAAG,OAAO,CAAC,IAAI,CAAC,CAIrF;AAED,wBAAgB,gBAAgB,SAK/B"}
|
package/dist/log.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"log.d.ts","sourceRoot":"","sources":["../../src/log.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,CAAC,GAAG,IAAI,EAAE,GAAG,GAAG,IAAI,
|
|
1
|
+
{"version":3,"file":"log.d.ts","sourceRoot":"","sources":["../../src/log.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,CAAC,GAAG,IAAI,EAAE,GAAG,GAAG,IAAI,CAGtC;AAED,wBAAgB,QAAQ,CAAC,GAAG,IAAI,EAAE,GAAG,GAAG,IAAI,CAE3C;AAED,eAAe,GAAG,CAAC"}
|
package/dist/log.js
CHANGED
package/dist/util/connector.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type GraphQLConnectorOptions } from '../graphql';
|
|
2
2
|
import type { LinkedCliConfig } from '../types';
|
|
3
3
|
import type { BranchParams } from './branches';
|
|
4
|
-
export declare function createConnector(params: LinkedCliConfig, branchParams: BranchParams, options?: GraphQLConnectorOptions): import("
|
|
4
|
+
export declare function createConnector(params: LinkedCliConfig, branchParams: BranchParams, options?: GraphQLConnectorOptions): import("@takeshape/ssg", { with: { "resolution-mode": "import" } }).GraphQLConnector | {
|
|
5
5
|
(params: any): Promise<any>;
|
|
6
6
|
clearCache(): Promise<void>;
|
|
7
7
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@takeshape/cli",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.74.1",
|
|
4
4
|
"description": "TakeShape CLI",
|
|
5
5
|
"homepage": "https://www.takeshape.io",
|
|
6
6
|
"repository": {
|
|
@@ -52,11 +52,11 @@
|
|
|
52
52
|
"semver": "^6.3.0",
|
|
53
53
|
"stream-to-promise": "^2.2.0",
|
|
54
54
|
"tmp": "^0.0.33",
|
|
55
|
-
"@takeshape/schema": "11.
|
|
56
|
-
"@takeshape/branches": "11.
|
|
57
|
-
"@takeshape/
|
|
58
|
-
"@takeshape/
|
|
59
|
-
"@takeshape/
|
|
55
|
+
"@takeshape/schema": "11.74.1",
|
|
56
|
+
"@takeshape/branches": "11.74.1",
|
|
57
|
+
"@takeshape/ssg": "11.74.1",
|
|
58
|
+
"@takeshape/util": "11.74.1",
|
|
59
|
+
"@takeshape/streams": "11.74.1"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@types/archiver": "^3.1.0",
|