leanweb 1.2.9 → 1.3.0
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/commands/init.js +2 -1
- package/package.json +1 -1
package/commands/init.js
CHANGED
|
@@ -103,7 +103,8 @@ const require = createRequire(import.meta.url);
|
|
|
103
103
|
});
|
|
104
104
|
console.log('\nSome useful commands:');
|
|
105
105
|
console.log('"lw s" to start the dev server.');
|
|
106
|
-
console.log('"lw
|
|
106
|
+
console.log('"lw di" to build for production. The output will be in dist/ directory.');
|
|
107
107
|
console.log('"lw g my-new-component" to generate a new standard web component.');
|
|
108
|
+
console.log('"lw h" to get more help information.');
|
|
108
109
|
}
|
|
109
110
|
})();
|