mirror of
https://github.com/actions/setup-python.git
synced 2025-06-28 21:53:47 +00:00
Clean up node_modules
This commit is contained in:
parent
b581dd4017
commit
145e800d1f
7184 changed files with 11271 additions and 1877650 deletions
29
node_modules/import-fresh/index.js
generated
vendored
29
node_modules/import-fresh/index.js
generated
vendored
|
@ -1,29 +0,0 @@
|
|||
'use strict';
|
||||
const path = require('path');
|
||||
const resolveFrom = require('resolve-from');
|
||||
const callerPath = require('caller-path');
|
||||
|
||||
module.exports = moduleId => {
|
||||
if (typeof moduleId !== 'string') {
|
||||
throw new TypeError('Expected a string');
|
||||
}
|
||||
|
||||
const filePath = resolveFrom(path.dirname(callerPath()), moduleId);
|
||||
|
||||
// Delete itself from module parent
|
||||
if (require.cache[filePath] && require.cache[filePath].parent) {
|
||||
let i = require.cache[filePath].parent.children.length;
|
||||
|
||||
while (i--) {
|
||||
if (require.cache[filePath].parent.children[i].id === filePath) {
|
||||
require.cache[filePath].parent.children.splice(i, 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Delete module from cache
|
||||
delete require.cache[filePath];
|
||||
|
||||
// Return fresh module
|
||||
return require(filePath);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue