@capawesome/cli 2.1.1-dev.9d51378.1756319029 → 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 +0 -9
- package/package.json +1 -1
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
|
@@ -55,15 +55,6 @@ const captureException = async (error) => {
|
|
|
55
55
|
await Sentry.close();
|
|
56
56
|
};
|
|
57
57
|
try {
|
|
58
|
-
console.log('All npm env vars:');
|
|
59
|
-
Object.keys(process.env).filter(key => key.startsWith('npm_')).forEach(key => {
|
|
60
|
-
console.log(`${key}: ${process.env[key]}`);
|
|
61
|
-
});
|
|
62
|
-
// Check if executed via npx (which indicates modern usage)
|
|
63
|
-
const isNpxExecution = process.env.npm_command === 'exec' && process.env.npm_lifecycle_event === 'npx';
|
|
64
|
-
if (!isNpxExecution) {
|
|
65
|
-
consola.warn('The `capawesome` command is deprecated. Please use `@capawesome/cli` instead.');
|
|
66
|
-
}
|
|
67
58
|
const result = processConfig(config, process.argv.slice(2));
|
|
68
59
|
await result.command.action(result.options, result.args);
|
|
69
60
|
}
|