@capawesome/cli 2.1.1-dev.9d51378.1756319025 → 2.1.1-dev.9d51378.1756319026
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/dist/index.js +3 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -55,6 +55,9 @@ const captureException = async (error) => {
|
|
|
55
55
|
await Sentry.close();
|
|
56
56
|
};
|
|
57
57
|
try {
|
|
58
|
+
console.log(process.argv);
|
|
59
|
+
console.log(process.argv.join(' '));
|
|
60
|
+
console.log(process.argv.join(' ').includes('@capawesome/cli'));
|
|
58
61
|
if (!process.argv.join(' ').includes('@capawesome/cli')) {
|
|
59
62
|
consola.warn('The `capawesome` command is deprecated. Please use `@capawesome/cli` instead.');
|
|
60
63
|
}
|
package/package.json
CHANGED