Skip to content

Commit abe3e9e

Browse files
committed
Refactor package into a monorepo with lerna
1 parent 74c0cfc commit abe3e9e

File tree

171 files changed

+236746
-2019
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

171 files changed

+236746
-2019
lines changed

.editorconfig

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
root = true
4+
5+
[*]
6+
indent_size = 2
7+
indent_style = space
8+
end_of_line = lf
9+
charset = utf-8
10+
trim_trailing_whitespace = true
11+
insert_final_newline = true

.gitignore

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
node_modules/
2+
coverage/
13
.DS_Store
2-
node_modules
3-
coverage
44
npm-debug.log
5+
dist/
6+
dist.es2015/

.travis.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
sudo: false
2+
13
language: node_js
24

35
notifications:
@@ -6,6 +8,5 @@ notifications:
68
on_failure: change
79

810
node_js:
9-
- "stable"
10-
11-
after_script: "npm install coveralls@2 && cat ./coverage/lcov.info | coveralls"
11+
- "8"
12+
- stable

README.md

+109-209
Large diffs are not rendered by default.

change-case.d.ts

-39
This file was deleted.

change-case.js

-20
This file was deleted.

lerna.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"packages": ["packages/*"],
3+
"version": "independent"
4+
}

0 commit comments

Comments
 (0)