-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: initial commit, boilerplates and configs
- Loading branch information
1 parent
ac5da90
commit 66aec60
Showing
11 changed files
with
12,606 additions
and
0 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,22 @@ | ||
{ | ||
"comments": false, | ||
"ignore": [ | ||
"interface.js" | ||
], | ||
|
||
"env": { | ||
"production": { | ||
"presets": [ | ||
"@babel/preset-flow", | ||
["@babel/preset-env", {"modules": false}] | ||
] | ||
}, | ||
"test": { | ||
"presets": [ | ||
"@babel/preset-flow", | ||
"@babel/preset-env" | ||
] | ||
} | ||
} | ||
} | ||
|
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 @@ | ||
[include] | ||
./src/ | ||
|
||
[libs] | ||
./flow-typed/ | ||
./node_modules/**/flow-typed/ | ||
./node_modules/**/**/flow-typed/ | ||
|
||
[options] | ||
module.ignore_non_literal_requires=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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Runtime data | ||
pids | ||
*.pid | ||
*.seed | ||
*.pid.lock | ||
|
||
# Coverage | ||
flow-coverage | ||
lib-cov | ||
coverage | ||
.nyc_output | ||
|
||
# Bundle | ||
build | ||
dist | ||
|
||
#Docs | ||
docs | ||
doc | ||
|
||
# Deps | ||
node_modules/ | ||
jspm_packages/ | ||
flow-typed/npm/ | ||
|
||
.npm | ||
.eslintcache | ||
.node_repl_history | ||
.env | ||
|
||
.idea | ||
*.iml |
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,16 @@ | ||
{ | ||
"reporter": [ | ||
"html", | ||
"text", | ||
"text-summary" | ||
], | ||
"include": [ | ||
"src/**/*.js" | ||
], | ||
"require": [ | ||
"@std/esm", | ||
"./script/require-all" | ||
], | ||
"check-coverage": false, | ||
"cache": 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
language: node_js | ||
node_js: | ||
- '10' | ||
|
||
install: | ||
- npm install | ||
- npm run build | ||
|
||
script: | ||
- npm run test_with_report | ||
|
||
deploy: | ||
provider: script | ||
skip_cleanup: true | ||
script: | ||
- npx semantic-release |
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,7 @@ | ||
{ | ||
"src": [ | ||
"./dist/**/*.js", | ||
"./README.md" | ||
], | ||
"dest": "./docs" | ||
} |
Oops, something went wrong.