@salla.sa/twilight-bundles 0.1.29 → 0.1.30
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/bin/tw-init.js +3 -3
- package/package.json +1 -1
package/bin/tw-init.js
CHANGED
|
@@ -292,9 +292,9 @@ async function initTwilightBundles(projectRootArg) {
|
|
|
292
292
|
console.log(' • Ctrl+C - Force Stop the development server\n');
|
|
293
293
|
|
|
294
294
|
console.log('📦 Component Management:');
|
|
295
|
-
console.log(' tw-create-component <component-name> - Create a new component');
|
|
296
|
-
console.log(' tw-delete-component <component-name> - Delete a component');
|
|
297
|
-
console.log(' Example: tw-create-component tw-my-button\n');
|
|
295
|
+
console.log(' pnpm tw-create-component <component-name> - Create a new component');
|
|
296
|
+
console.log(' pnpm tw-delete-component <component-name> - Delete a component');
|
|
297
|
+
console.log(' Example: pnpm tw-create-component tw-my-button\n');
|
|
298
298
|
|
|
299
299
|
// Handle server exit
|
|
300
300
|
devServer.on('exit', (code) => {
|
package/package.json
CHANGED