mirror of
https://github.com/feathericons/feather.git
synced 2023-08-10 21:13:24 +03:00
15 lines
390 B
Bash
15 lines
390 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
./node_modules/.bin/babel-node bin/process-svgs.js
|
||
|
|
||
|
./node_modules/.bin/rimraf dist
|
||
|
mkdir dist
|
||
|
./node_modules/.bin/babel-node bin/build-icons-json.js
|
||
|
|
||
|
./node_modules/.bin/rimraf dist/icons
|
||
|
mkdir dist/icons
|
||
|
./node_modules/.bin/babel-node bin/build-svgs.js
|
||
|
|
||
|
./node_modules/.bin/webpack --output-filename feather.js
|
||
|
./node_modules/.bin/webpack --output-filename feather.min.js -p
|