clippy-test 2.0.1 → 2.0.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.
@@ -1,20 +1,7 @@
1
- import { execSync } from 'child_process';
2
- import { existsSync } from 'fs';
3
- import { join } from 'path';
4
-
5
- try {
6
- const patchPackagePath = join(process.cwd(), 'node_modules', '.bin', 'patch-package');
7
- const patchesDir = join(process.cwd(), 'patches');
8
-
9
- if (existsSync(patchPackagePath) && existsSync(patchesDir)) {
10
- execSync('patch-package', { stdio: 'ignore', timeout: 5000 });
11
- }
12
- } catch (error) {
13
- }
14
-
15
1
  console.log(`
16
- OnCall installed.
17
-
18
- Run:
19
- oncall --help
20
- to get started.`);
2
+ OnCall CLI installed successfully!
3
+
4
+ Run:
5
+ oncall --help
6
+ to get started.
7
+ `);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clippy-test",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "oncall": "bin/oncall.js"