@cedarjs/internal 3.0.1-next.28 → 3.1.0-rc.30
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/cjs/index.js +10 -10
- package/package.json +9 -9
package/dist/cjs/index.js
CHANGED
|
@@ -17,22 +17,22 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
17
17
|
};
|
|
18
18
|
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
19
19
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
20
|
-
var
|
|
21
|
-
__export(
|
|
20
|
+
var src_exports = {};
|
|
21
|
+
__export(src_exports, {
|
|
22
22
|
buildApi: () => import_api.buildApi,
|
|
23
23
|
generate: () => import_generate.generate,
|
|
24
24
|
listQueryTypeFieldsInProject: () => import_gql.listQueryTypeFieldsInProject
|
|
25
25
|
});
|
|
26
|
-
module.exports = __toCommonJS(
|
|
27
|
-
__reExport(
|
|
28
|
-
__reExport(
|
|
29
|
-
__reExport(
|
|
30
|
-
__reExport(
|
|
31
|
-
__reExport(
|
|
26
|
+
module.exports = __toCommonJS(src_exports);
|
|
27
|
+
__reExport(src_exports, require("@cedarjs/project-config"), module.exports);
|
|
28
|
+
__reExport(src_exports, require("./ts2js.js"), module.exports);
|
|
29
|
+
__reExport(src_exports, require("./dev.js"), module.exports);
|
|
30
|
+
__reExport(src_exports, require("./routes.js"), module.exports);
|
|
31
|
+
__reExport(src_exports, require("./files.js"), module.exports);
|
|
32
32
|
var import_generate = require("./generate/generate.js");
|
|
33
33
|
var import_api = require("./build/api.js");
|
|
34
|
-
__reExport(
|
|
35
|
-
__reExport(
|
|
34
|
+
__reExport(src_exports, require("./validateSchema.js"), module.exports);
|
|
35
|
+
__reExport(src_exports, require("@cedarjs/babel-config"), module.exports);
|
|
36
36
|
var import_gql = require("./gql.js");
|
|
37
37
|
// Annotate the CommonJS export names for ESM import in node:
|
|
38
38
|
0 && (module.exports = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cedarjs/internal",
|
|
3
|
-
"version": "3.0
|
|
3
|
+
"version": "3.1.0-rc.30",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/cedarjs/cedar.git",
|
|
@@ -149,11 +149,11 @@
|
|
|
149
149
|
"@babel/plugin-transform-react-jsx": "7.28.6",
|
|
150
150
|
"@babel/plugin-transform-typescript": "^7.26.8",
|
|
151
151
|
"@babel/traverse": "7.29.0",
|
|
152
|
-
"@cedarjs/babel-config": "3.0
|
|
153
|
-
"@cedarjs/graphql-server": "3.0
|
|
154
|
-
"@cedarjs/project-config": "3.0
|
|
155
|
-
"@cedarjs/router": "3.0
|
|
156
|
-
"@cedarjs/structure": "3.0
|
|
152
|
+
"@cedarjs/babel-config": "3.1.0-rc.30",
|
|
153
|
+
"@cedarjs/graphql-server": "3.1.0-rc.30",
|
|
154
|
+
"@cedarjs/project-config": "3.1.0-rc.30",
|
|
155
|
+
"@cedarjs/router": "3.1.0-rc.30",
|
|
156
|
+
"@cedarjs/structure": "3.1.0-rc.30",
|
|
157
157
|
"@graphql-codegen/add": "6.0.0",
|
|
158
158
|
"@graphql-codegen/cli": "6.2.1",
|
|
159
159
|
"@graphql-codegen/client-preset": "5.2.4",
|
|
@@ -169,7 +169,7 @@
|
|
|
169
169
|
"@sdl-codegen/node": "2.0.1",
|
|
170
170
|
"ansis": "4.2.0",
|
|
171
171
|
"deepmerge": "4.3.1",
|
|
172
|
-
"esbuild": "0.
|
|
172
|
+
"esbuild": "0.21.5",
|
|
173
173
|
"fast-glob": "3.3.3",
|
|
174
174
|
"graphql": "16.13.1",
|
|
175
175
|
"kill-port": "1.6.1",
|
|
@@ -184,7 +184,7 @@
|
|
|
184
184
|
},
|
|
185
185
|
"devDependencies": {
|
|
186
186
|
"@arethetypeswrong/cli": "0.18.2",
|
|
187
|
-
"@cedarjs/framework-tools": "3.0
|
|
187
|
+
"@cedarjs/framework-tools": "3.1.0-rc.30",
|
|
188
188
|
"concurrently": "9.2.1",
|
|
189
189
|
"graphql-tag": "2.12.6",
|
|
190
190
|
"publint": "0.3.18",
|
|
@@ -197,5 +197,5 @@
|
|
|
197
197
|
"publishConfig": {
|
|
198
198
|
"access": "public"
|
|
199
199
|
},
|
|
200
|
-
"gitHead": "
|
|
200
|
+
"gitHead": "da9e4845840384863544a25d9a32900d62ebb6b1"
|
|
201
201
|
}
|