This repository was archived by the owner on Aug 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpnpmfile.js
100 lines (90 loc) · 2.87 KB
/
pnpmfile.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
/*
* Copyright (C) 2018 ExE Boss
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
"use strict";
/* eslint-env node */
/** @type {{resolutions:Record<string,string>}} */
const {resolutions: PACKAGE_RESOLUTIONS} = require("./package.json");
const semver = require("semver");
/**
* @param {Record<string,string>} dependencies
* @param {{log:function(*):void}} logger
* @return {boolean}
*/
const applyResolutions = (dependencies, logger) => {
if (typeof dependencies !== "object")
return false;
for (const key in PACKAGE_RESOLUTIONS) {
if (key in dependencies) {
logger.log(` - Setting ${JSON.stringify(key)} to ${JSON.stringify(PACKAGE_RESOLUTIONS[key])}`);
dependencies[key] = PACKAGE_RESOLUTIONS[key];
}
}
return true;
};
/**
* @param {*} pkg
* @param {{log:function(*):void}} logger
* @return {*}
*/
const readPackage = (pkg, logger) => {
const msg = [];
const lgr = {log: m => {msg.push(m);}};
/**
* @param {string} dependency
* @param {string} [target]
* @param {Record<string,string>} dependencies
* @param {{log:function(*):void}} logger
*/
const setDep = (dependency, target = null, dependencies = pkg.dependencies, logger = lgr) => {
if (target) {
if (dependencies[dependency]) {
logger && logger.log && logger.log(` - Setting ${JSON.stringify(dependency)} to ${JSON.stringify(target)}`);
} else {
logger && logger.log && logger.log(` - Adding ${JSON.stringify(`${dependency}@${target}`)}`);
}
dependencies[dependency] = target;
} else if (dependencies[dependency]) {
logger && logger.log && logger.log(` - Removing ${JSON.stringify(dependency)}`);
delete dependencies[dependency];
}
};
if (pkg.dependencies === undefined) pkg.dependencies = {};
applyResolutions(pkg.dependencies, lgr);
applyResolutions(pkg.devDependencies, lgr);
applyResolutions(pkg.optionalDependencies, lgr);
switch (pkg.name) {
case "eslint":
if (semver.major(pkg.version) >= 4)
setDep("eslint-plugin-no-unsafe-innerhtml", "^1.0.16");
break;
case "addons-linter":
setDep("regenerator-runtime", "0.11.x");
break;
case "regenerator-runtime":
break;
}
if (msg.length > 0) {
msg.unshift(`\n Editing "${pkg.name}@${pkg.version}":`);
logger.log(msg.join("\n"));
}
return pkg;
};
module.exports = {
hooks: {
readPackage,
},
};