@tscircuit/cli 0.0.14 → 0.0.15
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
CHANGED
|
@@ -209,7 +209,7 @@ import {Command} from "commander";
|
|
|
209
209
|
// package.json
|
|
210
210
|
var package_default = {
|
|
211
211
|
name: "@tscircuit/cli",
|
|
212
|
-
version: "0.0.
|
|
212
|
+
version: "0.0.14",
|
|
213
213
|
private: false,
|
|
214
214
|
type: "module",
|
|
215
215
|
description: "Command line tool for developing, publishing and installing tscircuit circuits",
|
|
@@ -228,7 +228,13 @@ var package_default = {
|
|
|
228
228
|
tscircuit: "./dist/cli.js",
|
|
229
229
|
tsci: "./dist/cli.js"
|
|
230
230
|
},
|
|
231
|
-
keywords: [
|
|
231
|
+
keywords: [
|
|
232
|
+
"circuit",
|
|
233
|
+
"react",
|
|
234
|
+
"electronics",
|
|
235
|
+
"pcb",
|
|
236
|
+
"schematic"
|
|
237
|
+
],
|
|
232
238
|
author: "",
|
|
233
239
|
license: "ISC",
|
|
234
240
|
dependencies: {
|
|
@@ -641,6 +647,9 @@ var getGeneratedReadme = ({
|
|
|
641
647
|
}) => {
|
|
642
648
|
return `
|
|
643
649
|
# ${name}
|
|
650
|
+
|
|
651
|
+
[})](https://registry.tscircuit.com/${name.replace("@", "")})
|
|
652
|
+
|
|
644
653
|
${shouldHaveProjectGeneratedNotice ? `\n\n> This project was generated using [tsci](https://github.com/tscircuit/tscircuit)\n` : ""}
|
|
645
654
|
To develop and view the examples, run \`tsci dev\` and open [http://localhost:3020](http://localhost:3020) in your browser.
|
|
646
655
|
|
|
@@ -7,6 +7,12 @@ export const getGeneratedReadme = ({
|
|
|
7
7
|
}) => {
|
|
8
8
|
return `
|
|
9
9
|
# ${name}
|
|
10
|
+
|
|
11
|
+
[})](https://registry.tscircuit.com/${name.replace("@", "")})
|
|
15
|
+
|
|
10
16
|
${
|
|
11
17
|
shouldHaveProjectGeneratedNotice
|
|
12
18
|
? `\n\n> This project was generated using [tsci](https://github.com/tscircuit/tscircuit)\n`
|