@cedarjs/codemods 0.6.1-next.0 → 0.6.1-next.51
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.
|
@@ -37,9 +37,6 @@ var import_fetch = require("@whatwg-node/fetch");
|
|
|
37
37
|
var import_project_config = require("@cedarjs/project-config");
|
|
38
38
|
const updateGraphqlConfig = async () => {
|
|
39
39
|
const res = await (0, import_fetch.fetch)(
|
|
40
|
-
// TODO: Have to come back here to update the URL when we have a more
|
|
41
|
-
// stable location than main
|
|
42
|
-
// 'https://raw.githubusercontent.com/redwoodjs/redwood/release/major/v7.0.0/packages/create-cedar-app/templates/ts/graphql.config.js'
|
|
43
40
|
"https://raw.githubusercontent.com/cedarjs/cedar/refs/tags/v0.4.0/packages/create-cedar-app/templates/ts/graphql.config.js"
|
|
44
41
|
);
|
|
45
42
|
const text = await res.text();
|
package/dist/lib/prettify.js
CHANGED
|
@@ -36,7 +36,7 @@ var import_prettier = require("prettier");
|
|
|
36
36
|
var import_project_config = require("@cedarjs/project-config");
|
|
37
37
|
const getPrettierConfig = async () => {
|
|
38
38
|
try {
|
|
39
|
-
const { default: prettierConfig } = await import(`file://${import_path.default.join((0, import_project_config.getPaths)().base, "prettier.config.
|
|
39
|
+
const { default: prettierConfig } = await import(`file://${import_path.default.join((0, import_project_config.getPaths)().base, "prettier.config.cjs")}`);
|
|
40
40
|
return prettierConfig;
|
|
41
41
|
} catch {
|
|
42
42
|
return void 0;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cedarjs/codemods",
|
|
3
|
-
"version": "0.6.1-next.
|
|
3
|
+
"version": "0.6.1-next.51+7c9a976df",
|
|
4
4
|
"description": "Codemods to ease upgrading a CedarJS Project",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@babel/plugin-transform-typescript": "^7.26.8",
|
|
31
31
|
"@babel/runtime-corejs3": "7.27.6",
|
|
32
32
|
"@babel/traverse": "7.27.4",
|
|
33
|
-
"@cedarjs/project-config": "0.6.1-next.
|
|
33
|
+
"@cedarjs/project-config": "0.6.1-next.51+7c9a976df",
|
|
34
34
|
"@svgr/core": "8.1.0",
|
|
35
35
|
"@svgr/plugin-jsx": "8.1.0",
|
|
36
36
|
"@vscode/ripgrep": "1.15.14",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"yargs": "17.7.2"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@cedarjs/framework-tools": "0.6.1-next.
|
|
52
|
+
"@cedarjs/framework-tools": "0.6.1-next.51",
|
|
53
53
|
"@types/babel__core": "7.20.5",
|
|
54
54
|
"@types/fs-extra": "11.0.4",
|
|
55
55
|
"@types/jscodeshift": "0.12.0",
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
"publishConfig": {
|
|
64
64
|
"access": "public"
|
|
65
65
|
},
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "7c9a976df61eea55cbabae015395da84f807222f"
|
|
67
67
|
}
|