mirror of
https://github.com/feathericons/feather.git
synced 2023-08-10 21:13:24 +03:00
26 lines
507 B
Bash
Executable File
26 lines
507 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Process SVG files
|
|
npx babel-node bin/process-svgs.js
|
|
|
|
# Create dist directory
|
|
npx rimraf dist
|
|
mkdir dist
|
|
|
|
# Build icons.json
|
|
npx babel-node bin/build-icons-json.js
|
|
|
|
# Build SVG sprite
|
|
npx babel-node bin/build-sprite.js
|
|
|
|
# Create dist/icons directory
|
|
npx rimraf dist/icons
|
|
mkdir dist/icons
|
|
|
|
# Build SVG icons
|
|
npx babel-node bin/build-svgs.js
|
|
|
|
# Build JavaScript library
|
|
npx webpack --output-filename feather.js --mode development
|
|
npx webpack --output-filename feather.min.js --mode production
|