Skip to content

Commit

Permalink
chore(package): initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-ciniawsky committed Jun 17, 2018
0 parents commit 736cbfb
Show file tree
Hide file tree
Showing 33 changed files with 1,910 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .editorconfig
@@ -0,0 +1,23 @@
root = true

[*]
indent_style = tab
indent_size = 4
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
max_line_length = 233

[*.json]
indent_style = space
indent_size = 2

[*.yml]
indent_style = space
indent_size = 2

[test/cases/parsing/bom/bomfile.{css,js}]
charset = utf-8-bom

[*.md]
trim_trailing_whitespace = false
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
@@ -0,0 +1 @@
* @michael-ciniawsky
33 changes: 33 additions & 0 deletions .github/ISSUE_TEMPLATE/BUGS.md
@@ -0,0 +1,33 @@
---
name: 🐛 Bug
---

> ✏️ Briefly describe the issue you are experiencing (or the feature you want to see added to the plugin). Tell us what you were trying to do and what happened instead. Remember, this is _not_ a place to ask questions. For that, go to http://gitter.im/webpack/webpack
### `Details`

> ✏️ Describe in more detail the problem you have been experiencing, if necessary.
## `Error (Logs|Stacks)`

> 👉 Create a [gist](https://gist.github.com) which is a paste of your **full** logs, and link them here.
> ⚠️ Do **not** paste your full logs here (or at least hide them by using a `<details></details>` block), as it will make this issue long and hard to read! If you are reporting a bug, **always** include logs!
### `Reproduction (Code)`

> ⚠️ Please remember that, with sample code; it's easier to reproduce a bug and much faster to fix it.
> 🔗 Please refer to a simple code example.
```bash
$ git clone https://github.com/<user>/<sample>
```

### `Environment`

> ℹ️ Please provide information about your current environment.
|OS|node|npm/yarn|package|
|:-:|:--:|:-:|:------:|
|[name][version]|[version]|[version]|[version]|
55 changes: 55 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
@@ -0,0 +1,55 @@
### `Notable Changes`

> ✏️ Describe the big picture of your changes here to communicate to the maintainers why we should accept this pull request. If it fixes a bug or resolves a feature request, be sure to link to that issue down below.
#### `Commit Message Summary (CHANGELOG)`

```
commit message body...
```

### `Type`

> ℹ️ What types of changes does your code introduce?
> 👉 _Put an `x` in the boxes that apply and delete all others_
- [ ] CI
- [ ] Fix
- [ ] Perf
- [ ] Docs
- [ ] Test
- [ ] Chore
- [ ] Style
- [ ] Build
- [ ] Feature
- [ ] Refactor

### `SemVer`

> ℹ️ What changes to the current `semver` range does your PR introduce?
> 👉 _Put an `x` in the boxes that apply and delete all others_
- [ ] Fix (:label: Patch)
- [ ] Feature (:label: Minor)
- [ ] Breaking Change (:label: Major)

### `Issues`

> ℹ️ What issue(s) (if any) are closed by your PR?
> 👉 _Replace `#1` with the issue number that applies and remove the ``` ` ```_
- Fixes `#1`

### `Checklist`

> ℹ️ You can also fill these out after creating the PR. If you're unsure about any of them, don't hesitate to ask. This is a reminder of what we are going to look for before merging your code.
> 👉 _Put an `x` in the boxes that apply and delete all others._
- [ ] Lint and unit tests pass with my changes
- [ ] I have added tests that prove my fix is effective/works
- [ ] I have added necessary documentation (if appropriate)
- [ ] Any dependent changes are merged and published in downstream modules
26 changes: 26 additions & 0 deletions .gitignore
@@ -0,0 +1,26 @@
# OS

.DS_Store
Thumbs.db

# Logs

*.log
npm-debug.log*
yarn-debug.log*

# Build

/logs
/dist
/local
/reports
/coverage
/node_modules

# Editor

.idea
.vscode
*.sublime-project
*.sublime-workspace
1 change: 1 addition & 0 deletions .npmrc
@@ -0,0 +1 @@
package-lock=false
12 changes: 12 additions & 0 deletions .travis.yml
@@ -0,0 +1,12 @@
language: node_js

node_js:
- 'lts/*'
- 'stable'

script: npm t

after_success: npm i -D coveralls && cat ./coverage/lcov.info | node_modules/.bin/coveralls

notifications:
email: false
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,3 @@
# Change Log

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
21 changes: 21 additions & 0 deletions LICENSE
@@ -0,0 +1,21 @@
License (MIT)

Copyright (c) Michael Ciniawsky <michael.ciniawsky@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

0 comments on commit 736cbfb

Please sign in to comment.