@nebulit/embuilder 0.1.41 → 0.1.43
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/cli.js +1 -2
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -14,7 +14,6 @@ program
|
|
|
14
14
|
program
|
|
15
15
|
.command('install')
|
|
16
16
|
.description('Install event-model skills into Claude Code')
|
|
17
|
-
.option('--with-templates', 'Also copy template files (ralph.sh, AGENTS.md, Claude.md, prompt.md, README.md) and generators to current directory')
|
|
18
17
|
.action((options) => {
|
|
19
18
|
console.log('📦 Installing EMBuilder...\n');
|
|
20
19
|
try {
|
|
@@ -28,7 +27,7 @@ program
|
|
|
28
27
|
console.error(` Package location: ${__dirname}`);
|
|
29
28
|
console.error('');
|
|
30
29
|
console.error('This might be caused by:');
|
|
31
|
-
console.error(' 1. Old cached version - try: npx --yes @dilgerma/embuilder@latest install
|
|
30
|
+
console.error(' 1. Old cached version - try: npx --yes @dilgerma/embuilder@latest install');
|
|
32
31
|
console.error(' 2. Package not published correctly - reinstall with: npm install -g @dilgerma/embuilder@latest');
|
|
33
32
|
console.error('');
|
|
34
33
|
console.error('If the problem persists, please report at:');
|