Skip to content
This repository was archived by the owner on Mar 4, 2022. It is now read-only.

Commit 1aad784

Browse files
authored
Chore: modernize (#176)
- **BREAKING**: Require node8+ - Update various deps - Modestly update code to ESnext mostly through `lint --fix`.
1 parent a15667b commit 1aad784

33 files changed

+2840
-2155
lines changed

.eslintrc-server

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
---
22
extends:
3-
- "defaults/configurations/walmart/es5-node"
3+
- formidable/configurations/es6-node
4+
5+
rules:
6+
# TODO: Update callbacks to promises.
7+
consistent-return: ["warn", { treatUndefinedAsUnspecified: true }]

.eslintrc-server-test

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
extends:
3-
- "defaults/configurations/walmart/es5-node"
3+
- formidable/configurations/es6-node
44

55
env:
66
mocha: true
@@ -9,6 +9,10 @@ globals:
99
expect: false
1010

1111
rules:
12-
no-unused-expressions: 0 # Disable for Chai expression assertions.
13-
max-nested-callbacks: 0 # Disable for nested describes.
14-
max-statements: [2, 20] # More statements allowed in tests.
12+
no-unused-expressions: off # Disable for Chai expression assertions.
13+
max-nested-callbacks: off # Disable for nested describes.
14+
max-statements: ["error", 20] # More statements allowed in tests.
15+
no-magic-numbers: off
16+
# TODO: Update callbacks to promises.
17+
consistent-return: ["warn", { treatUndefinedAsUnspecified: true }]
18+
camelcase: ["error", { properties: "never" }]

.travis.yml

+4-9
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
language: node_js
22

33
node_js:
4-
- "4"
5-
- "6"
64
- "8"
5+
- "10"
6+
- "12"
77

88
# Use container-based Travis infrastructure.
99
sudo: false
@@ -12,14 +12,9 @@ branches:
1212
only:
1313
- master
1414

15-
before_install:
16-
# GUI for real browsers.
17-
- export DISPLAY=:99.0
18-
- sh -e /etc/init.d/xvfb start
19-
2015
script:
21-
- npm --version
22-
- npm run builder:check-ci
16+
- yarn --version
17+
- yarn run builder:check-ci
2318

2419
# Manually send coverage reports to coveralls.
2520
# - Aggregate client results

HISTORY.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
History
22
=======
33

4+
## UNRELEASED
5+
6+
**BREAKING**:
7+
8+
* Restrict to `node` version `8+`.
9+
* Some modest ESnext refactoring.
10+
411
## 4.0.0
512

613
**BREAKING**:

LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2015-2018 Formidable Labs
3+
Copyright (c) 2015-2019 Formidable Labs
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

appveyor.yml

+7-12
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,26 @@
11
# Versions
22
environment:
33
matrix:
4-
- nodejs_version: 4
5-
TEST_NPM_VERSION: latest
6-
7-
- nodejs_version: 6
8-
TEST_NPM_VERSION: latest
9-
104
- nodejs_version: 8
11-
TEST_NPM_VERSION: latest
5+
- nodejs_version: 10
6+
- nodejs_version: 12
127

138
# Install scripts. (runs after repo cloning)
149
install:
1510
# Get the latest stable version of Node.js or io.js
1611
- ps: Install-Product node $env:nodejs_version
17-
# Install and use local, modern NPM
18-
- ps: npm install -g "npm@$env:TEST_NPM_VERSION"
12+
# Install modern yarn.
13+
- npm install -g yarn
1914
# install modules
20-
- npm install
15+
- yarn install
2116

2217
# Post-install test scripts.
2318
test_script:
2419
# Output useful info for debugging.
2520
- node --version
26-
- npm --version
21+
- yarn --version
2722
# run tests
28-
- npm run builder:check
23+
- yarn run builder:check
2924

3025
# Don't actually build.
3126
build: off

bin/builder-core.js

+20-20
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
"use strict";
22

3-
var chalk = require("chalk");
3+
const chalk = require("chalk");
44

5-
var Config = require("../lib/config");
6-
var Environment = require("../lib/environment");
7-
var Task = require("../lib/task");
8-
var log = require("../lib/log");
5+
const Config = require("../lib/config");
6+
const Environment = require("../lib/environment");
7+
const Task = require("../lib/task");
8+
const log = require("../lib/log");
99

1010
/**
1111
* Builder runner.
@@ -18,48 +18,48 @@ var log = require("../lib/log");
1818
* @returns {void}
1919
*/
2020
module.exports = function (opts, callback) {
21-
callback = arguments.length === 2 ? callback : opts;
22-
opts = (arguments.length === 2 ? opts : {}) || {};
21+
callback = arguments.length === 2 ? callback : opts; // eslint-disable-line no-magic-numbers
22+
opts = (arguments.length === 2 ? opts : {}) || {}; // eslint-disable-line no-magic-numbers
2323

2424
// Configuration
25-
var config = new Config({
25+
const config = new Config({
2626
env: opts.env,
2727
argv: opts.argv
2828
});
2929

3030
// Set up environment
31-
var env = new Environment({
32-
config: config,
31+
const env = new Environment({
32+
config,
3333
env: opts.env,
3434
argv: opts.argv
3535
});
3636

3737
// Set up logger state.
3838
log.setLevel({
39-
env: env,
39+
env,
4040
argv: opts.argv
4141
});
4242

4343
// Drain outer `builder` messages manually (may be global or locally-sourced).
44-
(opts.msgs || []).forEach(function (obj) {
44+
(opts.msgs || []).forEach((obj) => {
4545
log[obj.level](obj.type, obj.msg);
4646
});
4747

4848
// Infer task to run
49-
var task = new Task({
50-
config: config,
51-
env: env,
49+
const task = new Task({
50+
config,
51+
env,
5252
argv: opts.argv
5353
});
5454

5555
// Run the task
56-
log.info("builder-core:start:" + process.pid, "Started: " + chalk.gray(task));
57-
task.execute(function (err) {
56+
log.info(`builder-core:start:${process.pid}`, `Started: ${chalk.gray(task)}`);
57+
task.execute((err) => {
5858
if (err) {
59-
log.error("builder-core:end:" + process.pid,
60-
"Task: " + chalk.gray(task) + ", Error: " + chalk.red(err.message));
59+
log.error(`builder-core:end:${process.pid}`,
60+
`Task: ${chalk.gray(task)}, Error: ${chalk.red(err.message)}`);
6161
} else {
62-
log.info("builder-core:end:" + process.pid, "Task: " + chalk.gray(task) + " ended normally");
62+
log.info(`builder-core:end:${process.pid}`, `Task: ${chalk.gray(task)} ended normally`);
6363
}
6464

6565
callback(err);

bin/builder.js

+19-15
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
#!/usr/bin/env node
2+
23
"use strict";
34

4-
var path = require("path");
5+
const path = require("path");
56

67
// Buffer up log messages to pass on.
78
//
@@ -12,39 +13,42 @@ var path = require("path");
1213
// events here. So, instead of using the internal log queue, we manually create
1314
// an array of messages in the same format and drain in `builder-core`
1415
// explicitly.
15-
var msgs = [];
16+
const msgs = [];
1617

1718
// Infer if we are global and there is a local version available.
18-
var builderPath = require.resolve("./builder-core");
19-
var localPath = path.resolve("node_modules/builder/bin/builder-core.js");
19+
let builderPath = require.resolve("./builder-core");
20+
const localPath = path.resolve("node_modules/builder/bin/builder-core.js");
2021

2122
// Swap to local path if different.
2223
if (builderPath !== localPath) {
2324
try {
2425
builderPath = require.resolve(localPath);
2526
msgs.push({
26-
level: "info", type: "local-detect",
27-
msg: "Switched to local builder at: " + localPath
27+
level: "info",
28+
type: "local-detect",
29+
msg: `Switched to local builder at: ${localPath}`
2830
});
2931
} catch (err) {
3032
msgs.push({
31-
level: "info", type: "local-detect",
32-
msg: "Error importing local builder: " + err.message
33+
level: "info",
34+
type: "local-detect",
35+
msg: `Error importing local builder: ${err.message}`
3336
});
3437
msgs.push({
35-
level: "info", type: "local-detect",
36-
msg: "Using global builder at: " + builderPath
38+
level: "info",
39+
type: "local-detect",
40+
msg: `Using global builder at: ${builderPath}`
3741
});
3842
}
3943
}
4044

4145
// Import and run.
42-
var builder = require(builderPath);
46+
const builder = require(builderPath);
4347
builder({
44-
msgs: msgs
45-
}, function (err) {
46-
process.on("exit", function () {
47-
/*eslint-disable no-process-exit*/
48+
msgs
49+
}, (err) => {
50+
process.on("exit", () => {
51+
/* eslint-disable no-process-exit*/
4852
process.exit(err ? err.code || 1 : 0);
4953
});
5054
});

0 commit comments

Comments
 (0)