-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
executable file
·316 lines (291 loc) · 8.52 KB
/
index.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
import { promises as fs, constants } from "node:fs";
import { join, resolve } from "node:path";
import { createRequire } from "node:module";
import { fileURLToPath } from "node:url";
import console from "console-ansi";
import deepmerge from "deepmerge";
import semver from "semver";
import browserslistToEsbuild from "browserslist-to-esbuild";
import eslintJs from "@eslint/js";
import globals from "globals";
import babelParser from "@babel/eslint-parser";
import tseslint from "typescript-eslint";
import eslintPluginPrettierRecommended from "eslint-plugin-prettier/recommended";
import eslintPluginJsdoc from "eslint-plugin-jsdoc";
import init from "./init.js";
import dev from "./dev.js";
import build from "./build.js";
import bundle from "./bundle.js";
import release from "./release.js";
import deploy from "./deploy.js";
import install from "./install.js";
import npm from "./npm.js";
import {
FILES_GLOB,
NAME,
VERSION,
isTypeScriptProject,
readJson,
writeJson,
} from "./utils.js";
const require = createRequire(import.meta.url);
const __dirname = fileURLToPath(new URL(".", import.meta.url));
console.prefix = `[${NAME}]`;
// Options
const TARGETS = `defaults and supports es6-module`;
export const DEFAULTS_OPTIONS = {
// Inputs/meta
cwd: process.cwd(),
NODE_ENV: process.env.NODE_ENV || "development",
username: null,
gitHubUsername: null,
authorName: null,
files: "{*.+(j|t|mj|mt|cj|ct)s,src/**/*.+(j|t|mj|mt|cj|ct)s}",
ignore: ["**/node_modules/**"],
dependencies: "all",
updateVersions: true,
npmPath: null, // dirname(require.resolve("npm")),
// Process
ts: undefined,
serve: true,
lint: true,
format: true,
types: true,
docs: undefined,
docsFormat: undefined,
docsStart: "<!-- api-start -->",
docsEnd: "<!-- api-end -->",
commitAndTagVersion: true,
pkgFix: true,
// Server
/** @type {import("browser-sync").Options} */
browsersync: {
open: true,
https: true,
single: true,
watch: true,
},
hmr: false,
http2: true,
crossOriginIsolation: false,
// Formatter and linter
// TODO: lint and format config in code editor? Do I need config in package.json instead?
/** @type {import("prettier").RequiredOptions} */
prettier: null,
/** @type {import("eslint").Linter.FlatConfig} */
eslint: [
eslintJs.configs.recommended,
...tseslint.configs.recommended.map((config) => ({
...config,
files: FILES_GLOB.typescriptAll,
})),
{
files: FILES_GLOB.javascript,
languageOptions: {
parser: babelParser,
parserOptions: {
ecmaVersion: "latest",
sourceType: "module",
requireConfigFile: false,
babelOptions: {}, // Overwritten with options.babel on lint
},
globals: {
...globals.browser,
...globals.node,
...globals.worker,
},
},
},
{
files: FILES_GLOB.javascript,
...eslintPluginJsdoc.configs["flat/recommended-typescript-flavor"],
},
{
files: FILES_GLOB.typescript,
...eslintPluginJsdoc.configs["flat/recommended-typescript"],
},
{
files: [...FILES_GLOB.javascript, ...FILES_GLOB.typescript],
plugins: { jsdoc: eslintPluginJsdoc },
rules: {
"jsdoc/require-jsdoc": 0,
"jsdoc/require-param-description": 0,
"jsdoc/require-property-description": 0,
"jsdoc/require-returns-description": 0,
"jsdoc/tag-lines": 0,
"jsdoc/no-defaults": 0,
},
settings: { jsdoc: { ignorePrivate: true } },
},
{
files: ["test/**/*.js"],
languageOptions: {
// parser: "esprima",
globals: {
...globals.browser,
...globals.node,
...globals.jest,
...globals.jasmine,
},
},
},
eslintPluginPrettierRecommended,
// TODO: https://github.com/import-js/eslint-plugin-import/pull/2996
// {
// extends: ["plugin:import/recommended"],
// plugins: ["eslint-plugin-import"],
// rules: {
// "import/no-cycle": 1,
// "import/order": [1, { groups: ["builtin", "external", "internal"] }],
// "import/no-named-as-default": 0,
// "import/newline-after-import": 2,
// },
// },
],
/** @type {import("typescript").TranspileOptions} */
tsconfig: {
compilerOptions: {
allowJs: true,
declaration: true,
declarationDir: "types",
emitDeclarationOnly: true,
lib: ["ESNext", "DOM"],
module: "esnext",
},
},
// Transpile
transpiler: "swc",
/** @type {import("@rollup/plugin-babel").RollupBabelInputPluginOptions} */
babel: {
exclude: /node_modules\/(assert|core-js|@babel\/runtime)/,
presets: [
[
require.resolve("@babel/preset-env"),
{
targets: [TARGETS],
bugfixes: true,
debug: false,
useBuiltIns: "usage",
corejs: { version: "3.30", proposals: true },
},
],
],
plugins: [
[
require.resolve("@babel/plugin-transform-runtime"),
{ corejs: { version: 3, proposals: true } },
],
],
},
/** @type {import("esbuild").BuildOptions} */
esbuild: {
exclude: [""],
target: browserslistToEsbuild(TARGETS),
},
/** @type {import("@swc/core").Options} */
swc: {
env: {
targets: TARGETS,
mode: "entry", // "usage" is not working properly
coreJs: "3.37",
shippedProposals: true,
},
jsc: {
// `env` and `jsc.target` cannot be used together
target: null,
},
},
importMap: {},
resolve: {
include: [
...FILES_GLOB.javascript,
...FILES_GLOB.typescript,
...FILES_GLOB.commonjs,
...FILES_GLOB.react,
...FILES_GLOB.assets,
],
exclude: ["**.d.ts"],
copy: FILES_GLOB.assets,
conditions: ["module", "import", "default"],
mainFields: ["module", "jsnext:main", "jsnext", "main"],
browserField: true,
overrides: {},
},
rollup: {
/** @type {import("rollup").InputOptions} */
input: {},
/** @type {import("rollup").OutputOptions} */
output: {
dir: "web_modules",
},
/** @type {import("rollup").InputPluginOption} */
extraPlugins: [],
pluginsOptions: {},
watch: false,
sourceMap: false,
},
// Docs
typedoc: null,
jsdoc: null,
jsdoc2md: null,
};
export const commands = { init, dev, build, bundle, release, deploy, install };
export { npm, FILES_GLOB };
export const run = async (fn, options) => {
const { [fn.name]: commandOptions, ...globalOptions } = options;
options = deepmerge.all(
[DEFAULTS_OPTIONS, globalOptions || {}, commandOptions || {}],
{ clone: false },
);
try {
await npm.load(options.npmPath);
if (options.caller === "cli") {
console.debug(`v${VERSION}`);
console.debug(
`Using npm@${(await npm.run(options.cwd, "--version")).trim()} (${options.npmPath || "global"})`,
);
}
options.command = fn.name;
options.cwd = resolve(options.cwd);
options.cacheFolder = join(options.cwd, "node_modules", ".cache", NAME);
console.info(`${fn.name} in '${options.cwd}'`);
await fs.access(options.cwd, constants.R_OK | constants.W_OK);
options.ignore.push(`**/${options.rollup.output.dir}/**`);
// Auto-detect TypeScript project
options.ts ??= isTypeScriptProject(options.cwd);
// Set default docs
options.docs = options.docs ?? (options.ts ? "docs" : "README.md");
options.docsFormat = options.docsFormat ?? (options.ts ? "html" : "md");
// if (options.ts) {
// options.eslint.extends.push(
// "plugin:import/typescript",
// );
// options.eslint.settings["import/resolver"] = {
// typescript: true,
// node: true,
// };
// }
// Check package.json exists and update versions
if (options.command === "dev") {
const packageJsonPath = join(options.cwd, "package.json");
let packageJson = await readJson(packageJsonPath);
if (options.updateVersions) {
const { engines } = await readJson(
join(__dirname, "template", "package.json"),
);
const { prerelease, major, minor } = semver.minVersion(VERSION);
engines[NAME] = prerelease.length ? VERSION : `>=${major}.${minor}.x`;
packageJson = deepmerge(packageJson, { engines });
await writeJson(packageJsonPath, packageJson);
}
}
// console.debug(options);
return await fn(options);
} catch (error) {
console.error(
`Error accessing "cwd", loading "npm" or reading "package.json".`,
);
console.error(error);
return { error };
}
};