Skip to content

Commit 4e4dbf7

Browse files
committedJul 30, 2018
Fix more bugs.
1 parent 00d241d commit 4e4dbf7

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed
 

‎Makefile

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.PHONY: update-yosys build-yosys all
1+
.PHONY: update-yosys build-yosys build-yosys-napi clean all
22

33
all: build-yosys-napi
44

@@ -7,9 +7,14 @@ update-yosys:
77
git submodule foreach git pull origin master
88

99
build-yosys: update-yosys
10-
cd yosys-src && echo "ENABLE_LIBYOSYS=1" > Makefile.conf && make
10+
echo "ENABLE_LIBYOSYS=1" > yosys-src/Makefile.conf
11+
echo "ENABLE_TCL=0" >> yosys-src/Makefile.conf
12+
cd yosys-src && make
1113

1214
build-yosys-napi: build-yosys
1315
rm -rf build
1416
node-gyp configure
1517
node-gyp build
18+
19+
clean:
20+
cd yosys-src && make clean

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
},
3131
"files": [
3232
"index.js",
33-
"index.d.js",
33+
"index.d.ts",
3434
"prebuilds"
3535
]
3636
}

‎yarn.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1292,7 +1292,7 @@ prebuildify-ci@^1.0.2:
12921292

12931293
"prebuildify-load@git+https://git@github.com/dvc94ch/prebuildify-load.git":
12941294
version "1.0.1"
1295-
resolved "git+https://git@github.com/dvc94ch/prebuildify-load.git#a3ab855136e22480bf24cd03c284db6749f0a12d"
1295+
resolved "git+https://git@github.com/dvc94ch/prebuildify-load.git#9e66f7d2a1768a6b8efde53aa5fd3940d0adda23"
12961296

12971297
prebuildify@^2.7.0:
12981298
version "2.7.0"

0 commit comments

Comments
 (0)