@typecad/jlcpcb-export 1.0.0 → 1.0.1
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/README.md +2 -2
- package/package.json +3 -3
- package/README +0 -0
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# JLCPCB Export
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Export all the required files for [JLCPCB](https://jlcpcb.com/) assembly from a [typeCAD](https://typecad.net) project.
|
|
4
4
|
|
|
5
5
|
It will:
|
|
6
6
|
- run KiCAD's DRC on the PCB
|
|
@@ -32,6 +32,6 @@ let pcb = new PCB('project');
|
|
|
32
32
|
jlcpcb_export(typecad, pcb);
|
|
33
33
|
```
|
|
34
34
|
|
|
35
|
-
If the project doesn't pass DRC or the git repository is not clean, the function will throw an error. They can be ignored by
|
|
35
|
+
If the project doesn't pass DRC or the git repository is not clean, the function will throw an error. They can be ignored by calling the function like:
|
|
36
36
|
|
|
37
37
|
`jlcpcb_export(typecad, pcb, true);`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@typecad/jlcpcb-export",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Generate all the files needed to upload to JLCPCB",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"homepage": "https://typecad.net",
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
"@types/node": "^22.13.0",
|
|
13
13
|
"tslib": "^2.8.1",
|
|
14
14
|
"tsx": "^4.19.2",
|
|
15
|
-
"typescript": "^5.7.3"
|
|
15
|
+
"typescript": "^5.7.3",
|
|
16
|
+
"@typecad/typecad": "^0.1.0"
|
|
16
17
|
},
|
|
17
18
|
"dependencies": {
|
|
18
|
-
"@typecad/typecad": "^0.0.35",
|
|
19
19
|
"chalk": "^5.4.1",
|
|
20
20
|
"replace-in-file": "^8.3.0",
|
|
21
21
|
"zip-a-folder": "^3.1.8"
|
package/README
DELETED
|
File without changes
|