Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace browserify with rollup #1029

Merged
merged 1 commit into from
Dec 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ setup:
node packages/xmpp.js/script.js
npm install
cd packages/xmpp.js/ && npm run prepublish
node bundle.js
make bundle

lint:
npx eslint --cache .

test:
cd packages/xmpp.js/ && npm run prepublish
npm install
node bundle.js
make bundle
npx jest
make lint
make bundlesize
Expand All @@ -23,7 +23,7 @@ ci:
make lint
make restart
npx lerna run prepublish
node bundle.js
make bundle
make e2e
make bundlesize

Expand Down Expand Up @@ -58,7 +58,7 @@ bundlesize:
npx bundlesize

bundle:
node bundle.js
npx rollup -c rollup.config.js

size:
make bundle
Expand Down
38 changes: 0 additions & 38 deletions bundle.js

This file was deleted.

Loading
Loading