how to make a custom build for tom-select.js?

Viewed 16

I can't figure out how to make a custom build for tom-select.js. In the gruntfile.js I see this:

// build tom-select.custom.js
/* this file is generated by grunt when calling `npm run build -- --plugins=<plugins> */

so should I just list the plugins in the command line after npm run build command with --plugins flag? What is the syntax for this? Thanks!

1 Answers

I just found the answer:

create /build/js/tom-select.custom.js

npm run build -- --plugins=remove_button,restore_on_backspace

Related