Change build script name

This commit is contained in:
Marco Massarelli 2023-05-20 15:02:02 -04:00
parent 8b16a9076a
commit 996c8f0e0b
2 changed files with 3 additions and 2 deletions

View File

@ -20,7 +20,7 @@ jobs:
- name: Install dependencies
run: npm install
- name: Generate unrouted PCBs with Ergogen (definition in package.json)
run: npm run gen
run: npm run build
- name: Export DSN
uses: ./.github/actions/export-dsn
with:

View File

@ -1,6 +1,7 @@
{
"scripts": {
"gen": "ergogen ergogen/ --output ergogen/output --clear --debug"
"build": "ergogen ergogen/ --output ergogen/output --clear",
"debug": "ergogen ergogen/ --output ergogen/output --clear --debug"
},
"dependencies": {
"ergogen": "github:ergogen/ergogen"