-
-
Notifications
You must be signed in to change notification settings - Fork 206
/
Copy pathMakefile.js
123 lines (93 loc) · 2.94 KB
/
Makefile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/**
* @fileoverview Build file
* @author nzakas
*/
/* global cp, echo, exit, mkdir, rm, target, test */
"use strict";
/* eslint no-console: 0*/
//------------------------------------------------------------------------------
// Requirements
//------------------------------------------------------------------------------
require("shelljs/make");
const nodeCLI = require("shelljs-nodecli");
const path = require("path");
//------------------------------------------------------------------------------
// Data
//------------------------------------------------------------------------------
const NODE_MODULES = "./node_modules/",
TEMP_DIR = "./tmp/",
BUILD_DIR = "./build/",
// Utilities - intentional extra space at the end of each string
MOCHA = `${NODE_MODULES}mocha/bin/_mocha `,
// Files
MAKEFILE = "Makefile.js",
CONFIG_FILES = ".eslintrc.js",
JS_FILES = "\"lib/**/*.js\" \"espree.js\"",
TEST_FILES = "tests/lib/**/*.js";
//------------------------------------------------------------------------------
// Tasks
//------------------------------------------------------------------------------
target.all = function() {
target.test();
};
target.lint = function() {
let errors = 0,
lastReturn;
echo("Validating Makefile.js");
lastReturn = nodeCLI.exec("eslint", MAKEFILE);
if (lastReturn.code !== 0) {
errors++;
}
echo("Validating configuration files");
lastReturn = nodeCLI.exec("eslint", CONFIG_FILES);
if (lastReturn.code !== 0) {
errors++;
}
echo("Validating JavaScript files");
lastReturn = nodeCLI.exec("eslint", JS_FILES);
if (lastReturn.code !== 0) {
errors++;
}
echo("Validating JavaScript test files");
lastReturn = nodeCLI.exec("eslint", TEST_FILES);
if (lastReturn.code !== 0) {
errors++;
}
if (errors) {
exit(1);
}
};
target.test = function() {
// target.lint();
let errors = 0;
const lastReturn = nodeCLI.exec("nyc", MOCHA, "--color", "--reporter progress", "--timeout 30000", TEST_FILES);
if (lastReturn.code !== 0) {
errors++;
}
if (errors) {
exit(1);
}
};
target.docs = function() {
echo("Generating documentation");
nodeCLI.exec("jsdoc", "-d jsdoc lib");
echo("Documentation has been output to /jsdoc");
};
target.browserify = function() {
// 1. create temp and build directory
if (!test("-d", TEMP_DIR)) {
mkdir(TEMP_DIR);
mkdir(path.join(TEMP_DIR, "lib"));
}
if (!test("-d", BUILD_DIR)) {
mkdir(BUILD_DIR);
}
// 2. copy files into temp directory
cp("-r", "lib/*", path.join(TEMP_DIR, "lib"));
cp("espree.js", TEMP_DIR);
cp("package.json", TEMP_DIR);
// 3. browserify the temp directory
nodeCLI.exec("browserify", path.join(TEMP_DIR, "espree.js"), "-o", path.join(BUILD_DIR, "espree.js"), "-s espree");
// 4. remove temp directory
rm("-r", TEMP_DIR);
};