-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathupdate.standard.command.ts
60 lines (55 loc) · 2.5 KB
/
update.standard.command.ts
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
import chalk from 'chalk';
import { UDPATE_CONFIG } from '../constants.js';
import { getConfig } from '../utils/utils.config.js';
import { printBlueBox, printRedBox } from '../utils/utils.console.js';
import { getOnlyExistingInCwd, removeFilesInCwd } from '../utils/utils.files.js';
import { updateGoSdkAndModules } from '../utils/utils.goSdk.js';
import { updateNpmScripts, updatePackageJson } from '../utils/utils.npm.js';
import { getPackageManagerFromUserAgent } from '../utils/utils.packageManager.js';
import { updateDotConfigFolder } from '../utils/utils.plugin.js';
import { getGrafanaRuntimeVersion, getVersion } from '../utils/utils.version.js';
export const standardUpdate = async () => {
const { packageManagerName } = getPackageManagerFromUserAgent();
try {
// Updating the plugin (.config/, NPM package dependencies, package.json scripts)
// (More info on the why: https://docs.google.com/document/d/15dm4WV9v7Ga9Z_Hp3CJMf2D3meuTyEWqBc3omqiOksQ)
// -------------------
await updateDotConfigFolder();
updateNpmScripts();
updatePackageJson({
onlyOutdated: true,
ignoreGrafanaDependencies: false,
});
await updateGoSdkAndModules(process.cwd());
const filesToRemove = getOnlyExistingInCwd(UDPATE_CONFIG.filesToRemove);
if (Boolean(getConfig().features.useExperimentalRspack)) {
filesToRemove.push('./config/webpack');
}
if (filesToRemove.length) {
removeFilesInCwd(filesToRemove);
}
printBlueBox({
title: 'Update successful ✔',
content: `${chalk.bold('@grafana/* package version:')} ${getGrafanaRuntimeVersion()}
${chalk.bold('@grafana/create-plugin version:')} ${getVersion()}
${chalk.bold.underline('Next steps:')}
- 1. Run ${chalk.bold(`${packageManagerName} install`)} to install the package updates
- 2. Check if you encounter any breaking changes
(refer to our migration guide: https://grafana.com/developers/plugin-tools/migration-guides/update-from-grafana-versions/)
${chalk.bold('Do you have questions?')}
Please don't hesitate to reach out in one of the following ways:
- Open an issue in https://github.com/grafana/plugin-tools
- Ask a question in the community forum at https://community.grafana.com/c/plugin-development/30
- Join our community slack channel at https://slack.grafana.com/`,
});
} catch (error) {
if (error instanceof Error) {
printRedBox({
title: 'Something went wrong while updating your plugin.',
content: error.message,
});
} else {
console.error(error);
}
}
};