Skip to content

Commit f89ea91

Browse files
committed
fix: removing module type from package.json
1 parent 184b5a5 commit f89ea91

File tree

5 files changed

+6240
-541
lines changed

5 files changed

+6240
-541
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ BIN := ./node_modules/.bin
55
MOCHA_OPTS := -u tdd -r ts-node/register -r tsconfig-paths/register --extension ts
66
NYC_OPTS := --temp-dir build/nyc_output --report-dir build/coverage
77

8-
lib: ${SRC_FILES} package.json tsconfig.json node_modules rollup.config.js
8+
lib: ${SRC_FILES} package.json tsconfig.json node_modules rollup.config.mjs
99
@${BIN}/rollup -c && touch lib
1010

1111
.PHONY: test
@@ -62,8 +62,8 @@ build/pages: build/docs test/browser.html
6262
deploy-pages: | clean build/pages node_modules
6363
@${BIN}/gh-pages -d build/pages
6464

65-
test/browser.html: $(SRC_FILES) $(TEST_FILES) test/rollup.config.js node_modules
66-
@${BIN}/rollup -c test/rollup.config.js
65+
test/browser.html: $(SRC_FILES) $(TEST_FILES) test/rollup.config.mjs node_modules
66+
@${BIN}/rollup -c test/rollup.config.mjs
6767

6868
.PHONY: browser-test
6969
browser-test: test/browser.html

0 commit comments

Comments
 (0)