sello 0.1.6 → 0.1.7
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/sello.js +5 -2
- package/package.json +1 -1
- package/src/cli/sello.ts +5 -2
package/dist/cli/sello.js
CHANGED
|
@@ -246,11 +246,14 @@ function initDemoCommand(args ) {
|
|
|
246
246
|
|
|
247
247
|
console.log(`Created ${output}`);
|
|
248
248
|
console.log("");
|
|
249
|
-
console.log("
|
|
250
|
-
console.log(" npm install sello");
|
|
249
|
+
console.log("Terminal 1: keep the local dev log running");
|
|
251
250
|
console.log(" npx sello dev");
|
|
251
|
+
console.log("");
|
|
252
|
+
console.log("Terminal 2: emit and view a receipt");
|
|
252
253
|
console.log(` node ${output}`);
|
|
253
254
|
console.log(" npx sello actions");
|
|
255
|
+
console.log("");
|
|
256
|
+
console.log("Then open http://localhost:8787/actions");
|
|
254
257
|
}
|
|
255
258
|
|
|
256
259
|
function keysCommand(args ) {
|
package/package.json
CHANGED
package/src/cli/sello.ts
CHANGED
|
@@ -247,11 +247,14 @@ function initDemoCommand(args: string[]): void {
|
|
|
247
247
|
|
|
248
248
|
console.log(`Created ${output}`);
|
|
249
249
|
console.log("");
|
|
250
|
-
console.log("
|
|
251
|
-
console.log(" npm install sello");
|
|
250
|
+
console.log("Terminal 1: keep the local dev log running");
|
|
252
251
|
console.log(" npx sello dev");
|
|
252
|
+
console.log("");
|
|
253
|
+
console.log("Terminal 2: emit and view a receipt");
|
|
253
254
|
console.log(` node ${output}`);
|
|
254
255
|
console.log(" npx sello actions");
|
|
256
|
+
console.log("");
|
|
257
|
+
console.log("Then open http://localhost:8787/actions");
|
|
255
258
|
}
|
|
256
259
|
|
|
257
260
|
function keysCommand(args: string[]): void {
|