-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Marty Mcfly
committed
Nov 7, 2019
1 parent
ad7b8c4
commit e945be6
Showing
40 changed files
with
309 additions
and
204 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
root = true | ||
|
||
# optional | ||
[*] | ||
end_of_line = lf | ||
insert_final_newline = true | ||
indent_style = slace | ||
indent_size = 2 | ||
charset = utf-8 | ||
trim_trailing_whitespace = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
.rpt2_cache* | ||
logs | ||
*.lock | ||
*.log | ||
pids | ||
*.pid | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"trailingComma": "es5", | ||
"tabWidth": 2, | ||
"semi": false, | ||
"singleQuote": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,28 +6,30 @@ | |
"scripts": { | ||
"clean": "rm -rf packages/*/.rpt2_cache packages/*/dist", | ||
"clean.all": "lerna clean --yes && rm -rf package-lock.json packages/*/package-lock.json node_modules packages/*/.rpt2_cache packages/*/dist docs/*", | ||
"up": "ncu -ua ; npx lerna exec -- ncu -ua; npm run clean.all; npm install", | ||
"up": "ncu -u; npx lerna exec -- ncu -u; yarn clean.all; yarn", | ||
"build": "rollup -c rollup.config.js", | ||
"dev": "rollup -w -c rollup.config.js", | ||
"postinstall": "lerna bootstrap --hoist --no-ci", | ||
"publish": "npm run build && lerna publish --conventional-commits --yes", | ||
"publish": "yarn build && lerna publish --conventional-commits --yes", | ||
"watch": "chokidar --initial -d 2000 -t 1000 'packages/*/dist/**' -c 'npm run build && cp -rvf packages/*/dist/* $npm_package_config_dest/node_modules/@zerollup'", | ||
"test": "jest", | ||
"test.watch": "jest --watch" | ||
}, | ||
"workspaces": [ | ||
"packages/*" | ||
], | ||
"author": { | ||
"name": "Stefan Zerkalica", | ||
"email": "[email protected]" | ||
}, | ||
"license": "ISC", | ||
"devDependencies": { | ||
"@types/jest": "^23.3.14", | ||
"@types/node": "^10.14.18", | ||
"chokidar-cli": "^1.2.3", | ||
"jest": "^23.6.0", | ||
"lerna": "^3.16.4", | ||
"rollup": "^0.67.4", | ||
"ts-jest": "^23.10.5", | ||
"typescript": "^3.6.3" | ||
"@types/jest": "^24.0.22", | ||
"@types/node": "^12.12.6", | ||
"chokidar-cli": "^2.1.0", | ||
"jest": "^24.9.0", | ||
"lerna": "^3.18.3", | ||
"rollup": "^1.26.3", | ||
"ts-jest": "^24.1.0", | ||
"typescript": "3.7.2" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.