Skip to content

Commit

Permalink
fix: removing module type from package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
dafuga committed Oct 12, 2023
1 parent 184b5a5 commit f89ea91
Show file tree
Hide file tree
Showing 5 changed files with 6,240 additions and 541 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ BIN := ./node_modules/.bin
MOCHA_OPTS := -u tdd -r ts-node/register -r tsconfig-paths/register --extension ts
NYC_OPTS := --temp-dir build/nyc_output --report-dir build/coverage

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

.PHONY: test
Expand Down Expand Up @@ -62,8 +62,8 @@ build/pages: build/docs test/browser.html
deploy-pages: | clean build/pages node_modules
@${BIN}/gh-pages -d build/pages

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

.PHONY: browser-test
browser-test: test/browser.html
Expand Down
Loading

0 comments on commit f89ea91

Please sign in to comment.