Skip to content

Commit 2a2d1da

Browse files
committed
Add support for cjs config files
closes #116
1 parent ee3f7d2 commit 2a2d1da

File tree

3 files changed

+30
-2
lines changed

3 files changed

+30
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Then, add the following to your `package.json`:
3030

3131
Feel free to change the output path to whatever you like.
3232

33-
Next, the codegen will expect you to have created a file called either `getContentfulEnvironment.js` or `getContentfulEnvironment.ts`
33+
Next, the codegen will expect you to have created a file called `getContentfulEnvironment.js`, `getContentfulEnvironment.cjs` or `getContentfulEnvironment.ts`
3434
in the root of your project directory, which should export a promise that resolves with your Contentful environment.
3535

3636
The reason for this is that you can do whatever you like to set up your Contentful Management

src/loadEnvironment.ts

+2
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ function determineEnvironmentPath() {
6060

6161
if (fs.existsSync(`${pathWithoutExtension}.ts`)) {
6262
return `${pathWithoutExtension}.ts`
63+
} else if (fs.existsSync(`${pathWithoutExtension}.cjs`)) {
64+
return `${pathWithoutExtension}.cjs`
6365
}
6466

6567
return `${pathWithoutExtension}.js`

test/loadEnvironment.test.ts

+27-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,12 @@ jest.mock(
1414
{ virtual: true },
1515
)
1616

17+
jest.mock(
18+
require("path").resolve(process.cwd(), "./getContentfulEnvironment.cjs"),
19+
() => getContentfulEnvironmentFileFactory("cjs"),
20+
{ virtual: true },
21+
)
22+
1723
jest.mock(
1824
require("path").resolve(process.cwd(), "./getContentfulEnvironment.ts"),
1925
() => getContentfulEnvironmentFileFactory("ts"),
@@ -37,7 +43,9 @@ describe("loadEnvironment", () => {
3743

3844
describe("when getContentfulEnvironment.ts exists", () => {
3945
beforeEach(() => {
40-
jest.spyOn(fs, "existsSync").mockReturnValue(true)
46+
jest.spyOn(fs, "existsSync").mockImplementation(path => {
47+
return (path as string).endsWith(".ts")
48+
})
4149
})
4250

4351
describe("when ts-node is not found", () => {
@@ -89,6 +97,7 @@ describe("loadEnvironment", () => {
8997

9098
expect(getContentfulEnvironmentFileFactory).toHaveBeenCalledWith("ts")
9199
expect(getContentfulEnvironmentFileFactory).not.toHaveBeenCalledWith("js")
100+
expect(getContentfulEnvironmentFileFactory).not.toHaveBeenCalledWith("cjs")
92101
})
93102

94103
it("disables the registerer afterwards", async () => {
@@ -98,12 +107,29 @@ describe("loadEnvironment", () => {
98107
})
99108
})
100109

110+
describe("when getContentfulEnvironment.cjs exists", () => {
111+
beforeEach(() => {
112+
jest.spyOn(fs, "existsSync").mockImplementation(path => {
113+
return (path as string).endsWith(".cjs")
114+
})
115+
})
116+
117+
it("requires the javascript config on ESM environments", async () => {
118+
await loadEnvironment()
119+
120+
expect(getContentfulEnvironmentFileFactory).toHaveBeenCalledWith("cjs")
121+
expect(getContentfulEnvironmentFileFactory).not.toHaveBeenCalledWith("js")
122+
expect(getContentfulEnvironmentFileFactory).not.toHaveBeenCalledWith("ts")
123+
})
124+
})
125+
101126
it("requires the javascript config", async () => {
102127
jest.spyOn(fs, "existsSync").mockReturnValue(false)
103128

104129
await loadEnvironment()
105130

106131
expect(getContentfulEnvironmentFileFactory).toHaveBeenCalledWith("js")
107132
expect(getContentfulEnvironmentFileFactory).not.toHaveBeenCalledWith("ts")
133+
expect(getContentfulEnvironmentFileFactory).not.toHaveBeenCalledWith("cjs")
108134
})
109135
})

0 commit comments

Comments
 (0)