@capawesome/cli 2.1.1 → 2.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/dist/index.js +1 -3
- package/package.json +2 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [2.1.2](https://github.com/capawesome-team/cli/compare/v2.1.1...v2.1.2) (2025-08-27)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* remove deprecation warning ([5d8c2c0](https://github.com/capawesome-team/cli/commit/5d8c2c0b494d1c791bd2f02766202ab38321e48c))
|
|
11
|
+
|
|
5
12
|
## [2.1.1](https://github.com/capawesome-team/cli/compare/v2.1.0...v2.1.1) (2025-08-26)
|
|
6
13
|
|
|
7
14
|
## [2.1.0](https://github.com/capawesome-team/cli/compare/v2.0.3...v2.1.0) (2025-08-26)
|
package/dist/index.js
CHANGED
|
@@ -50,13 +50,11 @@ const captureException = async (error) => {
|
|
|
50
50
|
dsn: 'https://19f30f2ec4b91899abc33818568ceb42@o4507446340747264.ingest.de.sentry.io/4508506426966096',
|
|
51
51
|
release: pkg.version,
|
|
52
52
|
});
|
|
53
|
+
Sentry.setTag('cli_command', process.argv.slice(2).join(' '));
|
|
53
54
|
Sentry.captureException(error);
|
|
54
55
|
await Sentry.close();
|
|
55
56
|
};
|
|
56
57
|
try {
|
|
57
|
-
if (!process.argv.includes('@capawesome/cli')) {
|
|
58
|
-
consola.warn('The `capawesome` command is deprecated. Please use `@capawesome/cli` instead.');
|
|
59
|
-
}
|
|
60
58
|
const result = processConfig(config, process.argv.slice(2));
|
|
61
59
|
await result.command.action(result.options, result.args);
|
|
62
60
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@capawesome/cli",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.2",
|
|
4
4
|
"description": "The Capawesome Cloud Command Line Interface (CLI) to manage Live Updates and more.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -14,10 +14,9 @@
|
|
|
14
14
|
"prettier": "prettier \"**/*.{css,html,ts,js}\"",
|
|
15
15
|
"sentry:releases:new": "sentry-cli releases new $npm_package_version --org genz-it-solutions-gmbh --project capawesome-team-cli",
|
|
16
16
|
"sentry:releases:set-commits": "sentry-cli releases set-commits $npm_package_version --auto --org genz-it-solutions-gmbh --project capawesome-team-cli",
|
|
17
|
-
"sentry:sourcemaps:upload": "sentry-cli sourcemaps upload --release $npm_package_version --org genz-it-solutions-gmbh --project capawesome-team-cli ./dist",
|
|
18
17
|
"sentry:releases:finalize": "sentry-cli releases finalize $npm_package_version --org genz-it-solutions-gmbh --project capawesome-team-cli",
|
|
19
18
|
"release": "commit-and-tag-version",
|
|
20
|
-
"prepublishOnly": "npm run build && npm run sentry:releases:new && npm run sentry:releases:set-commits
|
|
19
|
+
"prepublishOnly": "npm run build && npm run sentry:releases:new && npm run sentry:releases:set-commits",
|
|
21
20
|
"postpublish": "npm run sentry:releases:finalize"
|
|
22
21
|
},
|
|
23
22
|
"engines": {
|