-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* move changelog to README.md * add .prettierrc for formatting * add index file to load cli.js as esm * update changelog in readme Co-authored-by: Benjamin Jesuiter <[email protected]>
- Loading branch information
Showing
7 changed files
with
115 additions
and
86 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,8 @@ | ||
{ | ||
"printWidth": 120, | ||
"tabWidth": 4, | ||
"useTabs": true, | ||
"singleQuote": true, | ||
"bracketSpacing": false, | ||
"arrowParens": "avoid" | ||
} |
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,51 +1,3 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) | ||
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). | ||
|
||
## [1.1.4] - 2019-11-14 | ||
|
||
* Update dependencies to fix some known security issues | ||
|
||
## [1.1.3] - 2019-04-22 | ||
|
||
* fix broken xo config | ||
* allow backtick-strings | ||
* catch parameter naming | ||
* space around lines | ||
|
||
* update dependencies | ||
|
||
## [1.1.2] - 2019-04-21 | ||
|
||
* update dependencies | ||
|
||
## [1.1.1] - 2018-08-01 | ||
|
||
* updated readme | ||
|
||
## [1.1.0] - 2018-08-01 | ||
|
||
* extra options for git are now possible | ||
|
||
## [1.0.2 + 1.0.3] - 2018-07-06 | ||
|
||
* Did some Housekeeping on this repository | ||
|
||
### Added | ||
|
||
* xo package with configuration | ||
* deploy script in package.json which uses this push-to-git code to push itself to master. | ||
|
||
## [1.0.1] - 2018-06-22 | ||
|
||
## Added | ||
|
||
* Changelog file | ||
* fixes binary name in README.md -> Usage | ||
|
||
## [1.0.0] - 2018-06-22 | ||
|
||
Initial Release - See Readme for usage and features | ||
see 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/usr/bin/env node | ||
|
||
// Set options as a parameter, environment variable, or rc file. | ||
require = require('esm')(module /*, options*/); | ||
module.exports = require('./src/cli.js'); |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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