@typecad/jlcpcb-export 1.0.0 → 1.0.2

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.
Files changed (3) hide show
  1. package/README.md +2 -2
  2. package/package.json +2 -2
  3. package/README +0 -0
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # JLCPCB Export
2
2
 
3
- Easily export all the required files for [JLCPCB](https://jlcpcb.com/) assembly from a [typeCAD](https://typecad.net) project.
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 call the function like:
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.0",
3
+ "version": "1.0.2",
4
4
  "description": "Generate all the files needed to upload to JLCPCB",
5
5
  "keywords": [],
6
6
  "homepage": "https://typecad.net",
@@ -9,13 +9,13 @@
9
9
  "types": "index.d.ts",
10
10
  "type": "module",
11
11
  "devDependencies": {
12
+ "@typecad/typecad": "^0.1.0",
12
13
  "@types/node": "^22.13.0",
13
14
  "tslib": "^2.8.1",
14
15
  "tsx": "^4.19.2",
15
16
  "typescript": "^5.7.3"
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