forked from kentcdodds/kcd-scripts
-
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.
chore(build): move to kcd-scripts (kentcdodds#20)
- Loading branch information
Kent C. Dodds
authored
Sep 8, 2017
1 parent
0d7d653
commit 097c2d4
Showing
15 changed files
with
384 additions
and
269 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,43 @@ | ||
<!-- | ||
Thanks for your interest in the project. I appreciate bugs filed and PRs submitted! | ||
Please make sure that you are familiar with and follow the Code of Conduct for | ||
this project (found in the CODE_OF_CONDUCT.md file). | ||
Please fill out this template with all the relevant information so we can | ||
understand what's going on and fix the issue. | ||
I'll probably ask you to submit the fix (after giving some direction). If you've | ||
never done that before, that's great! Check this free short video tutorial to | ||
learn how: http://kcd.im/pull-request | ||
--> | ||
|
||
- `rtl-css-js` version: | ||
- `node` version: | ||
- `npm` (or `yarn`) version: | ||
|
||
Relevant code or config | ||
|
||
```javascript | ||
|
||
``` | ||
|
||
What you did: | ||
|
||
|
||
|
||
What happened: | ||
|
||
<!-- Please provide the full error message/screenshots/anything --> | ||
|
||
Reproduction repository: | ||
|
||
<!-- | ||
If possible, please create a repository that reproduces the issue with the | ||
minimal amount of code possible. | ||
--> | ||
|
||
Problem description: | ||
|
||
|
||
|
||
Suggested solution: |
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,35 @@ | ||
<!-- | ||
Thanks for your interest in the project. Bugs filed and PRs submitted are appreciated! | ||
Please make sure that you are familiar with and follow the Code of Conduct for | ||
this project (found in the CODE_OF_CONDUCT.md file). | ||
Also, please make sure you're familiar with and follow the instructions in the | ||
contributing guidelines (found in the CONTRIBUTING.md file). | ||
If you're new to contributing to open source projects, you might find this free | ||
video course helpful: http://kcd.im/pull-request | ||
Please fill out the information below to expedite the review and (hopefully) | ||
merge of your pull request! | ||
--> | ||
|
||
<!-- What changes are being made? (What feature/bug is being fixed here?) --> | ||
**What**: | ||
|
||
<!-- Why are these changes necessary? --> | ||
**Why**: | ||
|
||
<!-- How were these changes implemented? --> | ||
**How**: | ||
|
||
<!-- Have you done all of these things? --> | ||
**Checklist**: | ||
<!-- add "N/A" to the end of each line that's irrelevant to your changes --> | ||
<!-- to check an item, place an "x" in the box like so: "- [x] Documentation" --> | ||
- [ ] Documentation | ||
- [ ] Tests | ||
- [ ] Ready to be merged <!-- In your opinion, is this ready to be merged as soon as it's reviewed? --> | ||
- [ ] Added myself to contributors table <!-- this is optional, see the contributing guidelines for instructions --> | ||
|
||
<!-- feel free to add additional comments --> |
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,13 @@ | ||
node_modules | ||
.nyc_output | ||
coverage | ||
dist | ||
.opt-in | ||
.opt-out | ||
.DS_Store | ||
.next | ||
.eslintcache | ||
|
||
# these cause more harm than good | ||
# when working with contributors | ||
package-lock.json | ||
yarn.lock |
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,2 +1,2 @@ | ||
registry=http://registry.npmjs.org/ | ||
save-exact=true | ||
package-lock=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
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 was deleted.
Oops, something went wrong.
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,67 +1,30 @@ | ||
{ | ||
"name": "rtl-css-js", | ||
"version": "0.0.0-semantically-released.0", | ||
"description": "RTL conversion for CSS in JS objects", | ||
"main": "dist/index.js", | ||
"description": "Right To Left conversion for CSS in JS objects", | ||
"main": "dist/rtl-css-js.cjs.js", | ||
"jsnext:main": "dist/rtl-css-js.es.js", | ||
"module": "dist/rtl-css-js.es.js", | ||
"scripts": { | ||
"start": "nps", | ||
"test": "nps test", | ||
"commitmsg": "opt --in commit-msg --exec \"validate-commit-msg\"", | ||
"precommit": "opt --in pre-commit --exec \"npm start validate\"" | ||
"add-contributor": "kcd-scripts contributors add", | ||
"build": "kcd-scripts build --browser --environment BUILD_NAME:rtlCSSJS", | ||
"lint": "kcd-scripts lint", | ||
"test": "kcd-scripts test", | ||
"test:update": "npm run test -s -- --coverage --updateSnapshot", | ||
"validate": "kcd-scripts validate", | ||
"precommit": "kcd-scripts precommit" | ||
}, | ||
"files": [ | ||
"dist" | ||
], | ||
"keywords": [], | ||
"files": ["dist"], | ||
"keywords": ["css-in-js", "ltr", "rtl", "cssjanus"], | ||
"author": "Kent C. Dodds <[email protected]> (http://kentcdodds.com/)", | ||
"license": "MIT", | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"all-contributors-cli": "^3.0.6", | ||
"babel-cli": "^6.14.0", | ||
"babel-core": "^6.18.2", | ||
"babel-jest": "^17.0.2", | ||
"babel-loader": "^6.2.7", | ||
"babel-polyfill": "^6.13.0", | ||
"babel-preset-es2015": "^6.14.0", | ||
"babel-preset-stage-2": "^6.13.0", | ||
"babel-register": "^6.14.0", | ||
"codecov": "^1.0.1", | ||
"commitizen": "^2.8.6", | ||
"cz-conventional-changelog": "^1.2.0", | ||
"eslint": "^3.10.2", | ||
"eslint-config-kentcdodds": "^11.0.0", | ||
"husky": "^0.11.7", | ||
"jest-cli": "^17.0.2", | ||
"opt-cli": "^1.5.1", | ||
"p-s": "^3.0.3", | ||
"rimraf": "^2.5.4", | ||
"semantic-release": "^6.3.2", | ||
"validate-commit-msg": "^2.8.0", | ||
"webpack": "^1.13.3" | ||
"kcd-scripts": "^0.6.0" | ||
}, | ||
"eslintConfig": { | ||
"extends": [ | ||
"kentcdodds", | ||
"kentcdodds/jest" | ||
] | ||
}, | ||
"jest": { | ||
"testEnvironment": "node", | ||
"coverageThreshold": { | ||
"global": { | ||
"branches": 100, | ||
"functions": 100, | ||
"lines": 100, | ||
"statements": 100 | ||
} | ||
} | ||
}, | ||
"config": { | ||
"commitizen": { | ||
"path": "node_modules/cz-conventional-changelog" | ||
} | ||
"extends": "./node_modules/kcd-scripts/eslint.js" | ||
}, | ||
"eslintIgnore": ["node_modules", "coverage", "dist"], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/kentcdodds/rtl-css-js.git" | ||
|
Oops, something went wrong.