-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathupdate.packages.mjs
113 lines (92 loc) · 3.39 KB
/
update.packages.mjs
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
#!/usr/bin/env node
import { confirm, select } from '@inquirer/prompts';
import { execSync } from 'node:child_process';
import { readdirSync, lstatSync } from 'node:fs';
import { join } from 'node:path';
import {rimraf} from 'rimraf';
const currentPath = process.cwd();
const packagesDir = join(currentPath, 'packages');
const header = `
==========================
🤖 Package update Wizard 🧙
==========================
`
async function updatePackages(dir, target, updateFiles) {
console.log(`${updateFiles ? 'Updating' : 'Checking' } packages for ${target} updates in ${dir}...`);
const command = `npx npm-check-updates ${updateFiles ? '-u' : ''} --target ${target}`;
execSync(command, { stdio: 'inherit', cwd: dir });
}
function removeDependencies(dir) {
console.log(`Removing root dependencies in ${dir}...`);
const rootNodeModulesPath = join(dir, 'node_modules');
rimraf.sync(rootNodeModulesPath);
const packagesDir = join(dir, 'packages');
readdirSync(packagesDir).forEach(packageDir => {
const fullPath = join(packagesDir, packageDir);
if (lstatSync(fullPath).isDirectory()) {
console.log(`Removing dependencies in ${packageDir}...`);
const nodeModulesPath = join(fullPath, 'node_modules');
rimraf.sync(nodeModulesPath);
}
});
}
function installDependencies(dir) {
console.log(`Installing dependencies in ${dir}...`);
execSync('pnpm pnpm.install.workaround', { stdio: 'inherit', cwd: dir });
}
function isPnpmInstalled() {
try {
execSync('pnpm --version', { stdio: 'ignore' });
return true;
} catch {
return false;
}
}
async function main() {
console.log(header);
const target = await select({
message: 'Which version target would you like to update to?',
choices: [
{ name: 'Minor', value: 'minor' },
{ name: 'Latest', value: 'latest' }
],
default: 'minor'
});
const updateFiles = await confirm({
message: 'Do you want to update the package.json files?',
default: true
});
console.log(`${updateFiles ? 'Updating' : 'Checking' } root 'package.json' for ${target} updates...`);
await updatePackages(currentPath, target, updateFiles);
readdirSync(packagesDir).forEach(async (packageDir) => {
const fullPath = join(packagesDir, packageDir);
if (lstatSync(fullPath).isDirectory()) {
await updatePackages(fullPath, target, updateFiles);
}
});
if (updateFiles) {
const removeNodeModules = await confirm({
message: 'Do you want to remove all "node_modules" and reinstall dependencies?',
default: true
});
if (removeNodeModules) {
removeDependencies(currentPath);
const usePnpm = await confirm({
message: 'Would you like reinstall the dependencies?',
default: true
});
if (usePnpm) {
if (isPnpmInstalled()) {
installDependencies(currentPath);
} else {
console.error('pnpm is not installed. Please install pnpm and try again.');
}
}
}
}
console.log(`All packages ${updateFiles ? 'updated': 'checked'}!`);
}
main().catch((error) => {
console.error('An unexpected error occurred:', error);
process.exit(1);
});