-
Notifications
You must be signed in to change notification settings - Fork 75
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
1 parent
88a8322
commit a1797c5
Showing
76 changed files
with
7,110 additions
and
2,949 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 |
---|---|---|
@@ -1,8 +1,13 @@ | ||
{ | ||
"plugins": ["transform-runtime"], | ||
"plugins": [ | ||
"@babel/plugin-transform-runtime", | ||
"@babel/plugin-proposal-class-properties" | ||
], | ||
"presets": [ | ||
["env", {"modules": false, "spec": true, "useBuiltIns": true}], | ||
"stage-0", | ||
"flow" | ||
[ | ||
"@babel/preset-env", | ||
{"modules": false, "spec": true, "useBuiltIns": "usage"} | ||
], | ||
"@babel/preset-flow", | ||
] | ||
} |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"hooks": { | ||
"commit-msg": "commitlint -e", | ||
"pre-commit": "lint-staged" | ||
} | ||
} |
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,3 +1,9 @@ | ||
module.exports = { | ||
extends: ["@commitlint/config-angular", "@commitlint/config-lerna-scopes"] | ||
extends: [ | ||
"@commitlint/config-conventional", | ||
"@commitlint/config-lerna-scopes" | ||
], | ||
rules: { | ||
"subject-case": [2, "always", "sentence-case"] | ||
} | ||
}; |
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 |
---|---|---|
@@ -1,14 +1,13 @@ | ||
// prettier-ignore | ||
module.exports = { | ||
scripts: { | ||
"build:clean": "rm -rfv dist compat", | ||
"build:flow": "nps 'flow-copy-source dist' 'flow-copy-source compat/cjs'", | ||
"build:index": "create-index --banner '// @flow' src/ && sed -f indexIgnore.sed -i src/index.js && nps 'lint --fix src/index.js'", | ||
"build:readme": "pkg-to-readme --template ./readmeTemplate.ejs --force && documentation readme src/** --section API && doctoc README.md", | ||
"build:src": "rollup -c ../../rollup.config.js", | ||
"flow-copy-source": "flow-copy-source -v src", | ||
"lint": "eslint --rule 'flowtype-errors/show-errors: error'", | ||
"prepublish": "not-in-install && nps 'build:clean' 'build:src' 'build:flow'", | ||
"version": "nps 'build:index' 'build:readme' && git add README.md src/index.js", | ||
"build:readme": "pkg-to-readme --template ./readmeTemplate.ejs --force && documentation readme src/** --markdown-toc=false --section API && doctoc README.md", | ||
"build:flow:copy-source": "flow-copy-source -v src", | ||
"build:flow": "nps 'build:flow:copy-source dist' 'build:flow:copy-source compat/cjs'", | ||
"build:src:bundle": "rollup -c ../../rollup.config.js", | ||
"build:src:clean": "rm -rfv dist compat", | ||
"build:src": "nps 'build:src:clean' 'build:src:bundle' 'build:src:flow'", | ||
"prepack": "nps 'build:src'", | ||
"version": "nps 'build:readme' && git add README.md", | ||
} | ||
}; |
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 |
---|---|---|
@@ -1,5 +1,4 @@ | ||
.* | ||
indexIgnore.sed | ||
readmeTemplate.ejs | ||
yarn.lock | ||
yarn-error.log |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,3 @@ | ||
// @flow | ||
|
||
// @create-index | ||
|
||
export { | ||
default as createAbsintheSocketLink | ||
} from "./createAbsintheSocketLink.js"; | ||
export {default as createAbsintheSocketLink} from "./createAbsintheSocketLink"; |
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,4 @@ | ||
.* | ||
indexIgnore.sed | ||
readmeTemplate.ejs | ||
yarn.lock | ||
yarn-error.log |
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.