Skip to content

Commit 9c7631e

Browse files
committed
refactoring and upgrade modules
1 parent d711a79 commit 9c7631e

File tree

6 files changed

+3776
-63
lines changed

6 files changed

+3776
-63
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Change Logs
2+
3+
## v0.0.1
4+
5+
- initial release

build

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
#!/usr/bin/env bash
2+
rm -rf dist
23
mkdir -p dist
3-
echo "build src/group.ls ->> dist/parse-path.js ..."
4-
./node_modules/.bin/lsc -cbp src/group.ls > dist/parse-path.js
5-
echo "build src/parse-path.ls -> dist/parse-path.js ..."
6-
./node_modules/.bin/lsc -cbp src/parse-path.ls >> dist/parse-path.js
4+
echo "build src/group.ls -> dist/index.js ..."
5+
./node_modules/.bin/lsc -cbp src/group.ls > dist/index.js
6+
echo "build src/parse-path.ls -> dist/index.js ..."
7+
./node_modules/.bin/lsc -cbp src/parse-path.ls >> dist/index.js
78
echo "minifying parse-path.js ..."
8-
./node_modules/.bin/uglifyjs dist/parse-path.js > dist/parse-path.min.js
9+
./node_modules/.bin/uglifyjs dist/index.js > dist/index.min.js
910
echo "done."
1011

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)