Skip to content
This repository was archived by the owner on May 10, 2021. It is now read-only.

Commit 42b1444

Browse files
authored
Merge pull request #101 from netlify/feat/windows
Fix Windows support
2 parents 0c62c07 + 7a68fb0 commit 42b1444

12 files changed

+171
-55
lines changed

.github/workflows/workflow.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,15 @@ jobs:
1212
timeout-minutes: 30
1313
strategy:
1414
matrix:
15-
os: [ubuntu-latest, macOS-latest]
15+
os: [ubuntu-latest, macOS-latest, windows-latest]
1616
# We should test on 10.13.0 but don't due to a bug in Jest
1717
# https://github.com/facebook/jest/issues/9453
1818
node-version: [10.15.0, 14.x]
1919
exclude:
2020
- os: macOS-latest
2121
node-version: 10.15.0
22+
- os: windows-latest
23+
node-version: 10.15.0
2224
fail-fast: false
2325
steps:
2426
- name: Git checkout

cypress/fixtures/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "next-on-netlify-test",
33
"scripts": {
4-
"build": "../../../node_modules/.bin/next build",
4+
"build": "next build",
55
"postbuild": "node ../../../next-on-netlify",
6-
"preview": "../../../node_modules/.bin/netlify dev",
6+
"preview": "netlify dev",
77
"predeploy": "mkdir -p .git",
8-
"deploy": "../../../node_modules/.bin/netlify deploy --json > deployment.json"
8+
"deploy": "netlify deploy --json > deployment.json"
99
}
1010
}

cypress/plugins/buildProject.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
const { join } = require("path");
2-
const { spawnSync } = require("child_process");
2+
const execa = require("execa");
33

44
// Build the given NextJS project
55
const buildProject = ({ project }, config) => {
66
process.stdout.write(`Building project: ${project}...`);
77

88
// Build project
9-
spawnSync("npm", ["run", "build"], {
9+
execa.sync("npm", ["run", "build"], {
1010
cwd: join(config.buildsFolder, project),
11+
preferLocal: true,
1112
});
1213

1314
console.log(" Done! ✅");

cypress/plugins/deployProject.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const waitOn = require("wait-on");
2-
const { spawn, spawnSync } = require("child_process");
2+
const execa = require("execa");
33
const { join } = require("path");
44
const getBaseUrl = require("./getBaseUrl");
55

@@ -10,9 +10,10 @@ const deployLocally = ({ project }, config) => {
1010
// Start server. Must start in detached mode, so that we can kill it later.
1111
// Otherwise, we seem unable to kill it.
1212
// See: https://medium.com/@almenon214/killing-processes-with-node-772ffdd19aad
13-
const server = spawn("npm", ["run", "preview"], {
13+
const server = execa("npm", ["run", "preview"], {
1414
cwd: join(config.buildsFolder, project),
1515
detached: true,
16+
localDir: true,
1617
});
1718

1819
// Set deployment
@@ -36,9 +37,9 @@ const deployOnNetlify = ({ project }, config) => {
3637
process.stdout.write(`Deploying project: ${project}...`);
3738

3839
// Trigger deploy
39-
const deploy = spawnSync("npm", ["run", "deploy"], {
40+
const deploy = execa.sync("npm", ["run", "deploy"], {
4041
cwd: join(config.buildsFolder, project),
41-
encoding: "utf-8",
42+
localDir: true,
4243
});
4344

4445
// Verify success

lib/helpers/getDataRouteForRoute.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ const buildId = fileContents.toString();
1010
// Return the data route for the given route
1111
const getDataRouteForRoute = (route) => {
1212
const filePath = getFilePathForRoute(route, "json");
13-
14-
return join("/_next", "data", buildId, filePath);
13+
return `/_next/data/${buildId}${filePath}`;
1514
};
1615

1716
module.exports = getDataRouteForRoute;

package-lock.json

+123-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
},
4040
"devDependencies": {
4141
"cypress": "^5.1.0",
42+
"execa": "^4.1.0",
4243
"folder-hash": "^3.3.3",
4344
"husky": "^4.3.0",
4445
"jest": "^26.4.2",

tests/customRedirects.test.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// Test next-on-netlify when a custom distDir is set in next.config.js
22

3+
const { EOL } = require("os");
34
const { parse, join } = require("path");
45
const { readFileSync } = require("fs-extra");
56
const buildNextApp = require("./helpers/buildNextApp");
@@ -40,10 +41,11 @@ describe("Routing", () => {
4041
test("includes custom redirect rules", async () => {
4142
// Read _redirects file
4243
const contents = readFileSync(
43-
join(PROJECT_PATH, "out_publish", "_redirects")
44+
join(PROJECT_PATH, "out_publish", "_redirects"),
45+
"utf8"
4446
);
4547

46-
const redirects = contents.toString().trim().split(/\n/);
48+
const redirects = contents.trim().split(EOL);
4749
expect(redirects[0]).toEqual("# Custom Redirect Rules");
4850
expect(redirects[1]).toEqual(
4951
"https://old.example.com/* https://new.example.com/:splat 301!"

tests/defaults.test.js

+14-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Test default next-on-netlify configuration
22

3-
const { parse, join } = require("path");
3+
const { parse, join, sep } = require("path");
44
const {
55
existsSync,
66
readdirSync,
@@ -44,28 +44,32 @@ describe("next-on-netlify", () => {
4444
describe("next-on-netlify", () => {
4545
test("builds successfully", () => {
4646
expect(buildOutput).toMatch("Next on Netlify");
47-
expect(buildOutput).toMatch("Copying public/ folder to out_publish/");
48-
expect(buildOutput).toMatch("Copying static NextJS assets to out_publish/");
4947
expect(buildOutput).toMatch(
50-
"Setting up API endpoints as Netlify Functions in out_functions/"
48+
`Copying public${sep} folder to out_publish${sep}`
5149
);
5250
expect(buildOutput).toMatch(
53-
"Setting up pages with getInitialProps as Netlify Functions in out_functions/"
51+
`Copying static NextJS assets to out_publish${sep}`
5452
);
5553
expect(buildOutput).toMatch(
56-
"Setting up pages with getServerSideProps as Netlify Functions in out_functions/"
54+
`Setting up API endpoints as Netlify Functions in out_functions${sep}`
5755
);
5856
expect(buildOutput).toMatch(
59-
"Copying pre-rendered pages with getStaticProps and JSON data to out_publish/"
57+
`Setting up pages with getInitialProps as Netlify Functions in out_functions${sep}`
6058
);
6159
expect(buildOutput).toMatch(
62-
"Setting up pages with getStaticProps and fallback: true as Netlify Functions in out_functions/"
60+
`Setting up pages with getServerSideProps as Netlify Functions in out_functions${sep}`
6361
);
6462
expect(buildOutput).toMatch(
65-
"Setting up pages with getStaticProps and revalidation interval as Netlify Functions in out_functions/"
63+
`Copying pre-rendered pages with getStaticProps and JSON data to out_publish${sep}`
6664
);
6765
expect(buildOutput).toMatch(
68-
"Copying pre-rendered pages without props to out_publish/"
66+
`Setting up pages with getStaticProps and fallback: true as Netlify Functions in out_functions${sep}`
67+
);
68+
expect(buildOutput).toMatch(
69+
`Setting up pages with getStaticProps and revalidation interval as Netlify Functions in out_functions${sep}`
70+
);
71+
expect(buildOutput).toMatch(
72+
`Copying pre-rendered pages without props to out_publish${sep}`
6973
);
7074
expect(buildOutput).toMatch("Setting up redirects");
7175
expect(buildOutput).toMatch("Success! All done!");

tests/fixtures/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "next-on-netlify-test",
33
"scripts": {
4-
"next-build": "../../../../node_modules/.bin/next build",
4+
"next-build": "next build",
55
"next-on-netlify": "node ../../../next-on-netlify"
66
}
77
}

tests/helpers/buildNextApp.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class NextAppBuilder {
7373
// cache the result
7474
if (!existsSync(this.__cachePath)) {
7575
// Build the nextJS app
76-
npmRun("next-build", this.__stagingPath);
76+
await npmRun("next-build", this.__stagingPath);
7777

7878
// Cache the build
7979
copySync(this.__stagingPath, this.__cachePath);
@@ -84,7 +84,7 @@ class NextAppBuilder {
8484
copySync(this.__cachePath, this.__appPath);
8585

8686
// Run next-on-netlify
87-
const { stdout } = npmRun("next-on-netlify", this.__appPath);
87+
const { stdout } = await npmRun("next-on-netlify", this.__appPath);
8888
return stdout;
8989
}
9090

0 commit comments

Comments
 (0)