-
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.
feat(qux): scaffolded new package now that the package adder handles …
…readme generation
- Loading branch information
Showing
16 changed files
with
7,761 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 @@ | ||
{"presets":["@travi"],"ignore":["./lib/"],"env":{"test":{"plugins":["istanbul"]}}} |
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,2 @@ | ||
/coverage/ | ||
/lib/ |
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,4 @@ | ||
root: true | ||
extends: | ||
- '@travi' | ||
- '@travi/mocha' |
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 @@ | ||
{"path":"package-lock.json","type":"npm","validate-https":true,"allowed-hosts":["npm"]} |
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 @@ | ||
{"ui":"tdd","require":["@babel/register","./test/mocha-setup.js"]} |
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,2 @@ | ||
update-notifier=false | ||
engine-strict=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 @@ | ||
{"extends":"@istanbuljs/nyc-config-babel","reporter":["lcov","text-summary","html"],"exclude":["src/**/*-test.js","test/","thirdparty-wrappers/","vendor/"]} |
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,14 @@ | ||
// https://github.com/remarkjs/remark/tree/master/packages/remark-stringify#options | ||
exports.settings = { | ||
listItemIndent: 1, | ||
emphasis: '_', | ||
strong: '_', | ||
bullet: '*', | ||
incrementListMarker: false | ||
}; | ||
|
||
exports.plugins = [ | ||
'remark-preset-lint-travi', | ||
['remark-toc', {tight: true}], | ||
['remark-usage', {heading: 'example'}] | ||
]; |
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,70 @@ | ||
# qux | ||
|
||
yet another lerna managed package | ||
|
||
<!--status-badges start --> | ||
|
||
<!--status-badges end --> | ||
|
||
## Table of Contents | ||
|
||
* [Usage](#usage) | ||
* [Installation](#installation) | ||
* [Example](#example) | ||
* [Contributing](#contributing) | ||
* [Dependencies](#dependencies) | ||
* [Verification](#verification) | ||
|
||
## Usage | ||
|
||
<!--consumer-badges start --> | ||
|
||
[![npm][npm-badge]][npm-link] | ||
[![Try @travi/qux on RunKit][runkit-badge]][runkit-link] | ||
|
||
<!--consumer-badges end --> | ||
|
||
### Installation | ||
|
||
```sh | ||
$ npm install @travi/qux | ||
``` | ||
|
||
### Example | ||
|
||
```javascript | ||
import qux from '@travi/qux'; | ||
``` | ||
|
||
## Contributing | ||
|
||
<!--contribution-badges start --> | ||
|
||
[![semantic-release][semantic-release-badge]][semantic-release-link] | ||
|
||
<!--contribution-badges end --> | ||
|
||
### Dependencies | ||
|
||
```sh | ||
$ nvm install | ||
$ npm install | ||
``` | ||
|
||
### Verification | ||
|
||
```sh | ||
$ npm test | ||
``` | ||
|
||
[npm-link]: https://www.npmjs.com/package/@travi/qux | ||
|
||
[npm-badge]: https://img.shields.io/npm/v/@travi/qux.svg | ||
|
||
[runkit-link]: https://npm.runkit.com/@travi/qux | ||
|
||
[runkit-badge]: https://badge.runkitcdn.com/@travi/qux.svg | ||
|
||
[semantic-release-link]: https://github.com/semantic-release/semantic-release | ||
|
||
[semantic-release-badge]: https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg |
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,3 @@ | ||
// remark-usage-ignore-next | ||
/* eslint-disable-next-line no-unused-vars */ | ||
import qux from './lib/index.cjs'; |
Oops, something went wrong.