We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e697b3a commit a352782Copy full SHA for a352782
1 file changed
bin/build.sh
@@ -1,15 +1,25 @@
1
#!/bin/bash
2
3
+# Process SVG files
4
./node_modules/.bin/babel-node bin/process-svgs.js
5
6
+# Create dist directory
7
./node_modules/.bin/rimraf dist
8
mkdir dist
9
+
10
+# Build icons.json
11
./node_modules/.bin/babel-node bin/build-icons-json.js
12
13
+# Build SVG sprite
14
./node_modules/.bin/babel-node bin/build-sprite.js
15
16
+# Create dist/icons directory
17
./node_modules/.bin/rimraf dist/icons
18
mkdir dist/icons
19
20
+# Build SVG icons
21
./node_modules/.bin/babel-node bin/build-svgs.js
22
23
+# Build JavaScript library
24
./node_modules/.bin/webpack --output-filename feather.js
25
./node_modules/.bin/webpack --output-filename feather.min.js -p
0 commit comments