Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
75a977f
chore(package): update `postcss` v6.0.0...7.0.0 (`dependencies`) (#375)
damanwiththeplan Aug 4, 2018
5e6e859
test: replace helpers with `@webpack-utilities/test` (#386)
michael-ciniawsky Aug 4, 2018
48553e2
fix(options): improved `ValidationError` messages
michael-ciniawsky Aug 4, 2018
c38356a
test(Errors): remove stacktrace from snapshot
michael-ciniawsky Aug 4, 2018
b728e90
fix(index): emit `warnings` as an instance of `{Error}`
michael-ciniawsky Aug 4, 2018
44b6974
fix(index): add ast version (`meta.ast`)
michael-ciniawsky Aug 4, 2018
83d42b4
refactor(src): update code base with latest ES2015+ features
michael-ciniawsky Aug 4, 2018
f9bfaef
chore(PULL_REQUEST_TEMPLATE): improve format and content
michael-ciniawsky Aug 5, 2018
ed054aa
chore(ISSUE_TEMPLATE/BUG): move bug reports into their own template
michael-ciniawsky Aug 5, 2018
14695b1
chore(ISSUE_TEMPLATE/FEATURE): add feature request template
michael-ciniawsky Aug 5, 2018
72b3f5a
chore(ISSUE_TEMPLATE/DOCS): add template for documentation issues
michael-ciniawsky Aug 5, 2018
d35c1ad
chore(package): update `schema-utils` v0.4.5...1.0.0 (`dependencies`)
michael-ciniawsky Aug 8, 2018
e99b7a1
docs(LOADER): update JSDoc
michael-ciniawsky Aug 8, 2018
cf26b11
refactor(Warning): add `warning` property checks
michael-ciniawsky Aug 8, 2018
282d0ab
refactor(options): remove `ident` from validation schema
michael-ciniawsky Aug 8, 2018
01da44e
refactor(Error): add `error` property checks
michael-ciniawsky Aug 8, 2018
1d496f6
docs(README): update filename formatting
michael-ciniawsky Aug 8, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 0 additions & 39 deletions .github/ISSUE_TEMPLATE.md

This file was deleted.

34 changes: 34 additions & 0 deletions .github/ISSUE_TEMPLATE/BUG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
name: 🐛 Bug
about: Report a Bug
---

<!-- ✏️ Briefly describe the issue you are experiencing. Tell us what you were trying to do and what happened instead. Remember, this is *not* the right place to ask general support questions. For that, please go to http://gitter.im/postcss/postcss -->

### 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 fold them by using a `<details>{{ logs }}</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]|
30 changes: 30 additions & 0 deletions .github/ISSUE_TEMPLATE/DOCS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
name: 📖 Docs
about: Report documentation related issues
---

### Type

<!-- 👉 Specify the type of issue by checking one of the provided checkboxes below and please deleted all others -->

- [ ] Other
- [ ] Wrong
- [ ] Unclear
- [ ] Missing

### Details

<!-- ✏️ Briefly describe the issue you are experiencing. Tell us what you were trying to do (how you understood the documentation) and what happened instead -->

### Location

<!-- 👉 Select the area where the aforementioned issue is currently located -->

- [ ] README
- [ ] LICENSE
- [ ] CHANGELOG
- [ ] ISSUE_TEMPLATE
- [ ] BUG
- [ ] DOCS
- [ ] FEATURE
- [ ] PULL_REQUEST_TEMPLATE
22 changes: 22 additions & 0 deletions .github/ISSUE_TEMPLATE/FEATURE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: 🌟 Feature
about: Request a feature
---

### Proposal

<!-- ✏️ Briefly describe the feature you want to be added -->

### Use Case

<!-- ✏️ Describe in more detail the specific use case this feature addresses -->

### Implementation

<!-- 👉 Select one of the provided options -->

- [ ] I'm open to work on this
- [ ] I need help/mentorship
- [ ] I'm unable to work on this

<!-- ✏️ Briefly describe the feature implementation -->
59 changes: 36 additions & 23 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,50 +1,63 @@
> ℹ️ 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.
### Notable Changes

### `Type`
---
<!-- ✏️ 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(s) down below -->

> ℹ️ What types of changes does your code introduce?
#### `Commit Message Summary (CHANGELOG)`

> _Put an `x` in the boxes that apply_
<!-- ⚠️ All commits will be squashed into a single commit when merging the PR, so if there is any additional information needed to describe your changes (e.g BREAKING CHANGES), please list them here so the maintainers are able to include them as the commit message body of the final commit. I case your unsure what might be relevant don't hesitate to ask -->

<!-- 👉 Replace the example with your changes or otherwise delete the code block in case no additional information is needed -->

```bash
# Commit Message Body
#
# Example
BREAKING CHANGE: requires `node >= v8.0.0`
BREAKING CHANGE: `options.x` requires to be a `{Function}` now
```

### Type

> ℹ️ What type of changes does your code introduce?

<!-- 👉 Put an `x` in the boxes that apply and delete all others -->

- [ ] CI
- [ ] Fix
- [ ] Perf
- [ ] Docs
- [ ] Test
- [ ] Style
- [ ] Build
- [ ] Chore
- [ ] Feature
- [ ] Refactor

### `SemVer`
---
### Issues

> ℹ️ What changes to the current `semver` range does your PR introduce?
> ℹ️ What issue(s) (if any) are closed by your PR?

> _Put an `x` in the boxes that apply_
<!-- 👉 Replace `#1` with the issue number that applies and remove the ``` ` ``` (`#1` => #1) -->

- [ ] Bug (:label: Patch)
- [ ] Feature (:label: Minor)
- [ ] Breaking Change (:label: Major)
- Fixes `#1`

### `Issues`
---
### SemVer

> ℹ️ What issue (if any) are closed by your PR?
> ℹ️ What changes to the current `semver` range does your PR introduce?

> _Replace `#1` with the error number that applies_
<!-- 👉 Put an `x` in the boxes that apply and delete all others -->

- Fixes `#1`
- [ ] Fix (:label: Patch)
- [ ] Feature (:label: Minor)
- [ ] Breaking Change (:label: Major)

### `Checklist`
---
### 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._
<!-- 👉 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 tests that prove my fix is effective/works (if needed)
- [ ] I have added necessary documentation (if appropriate)
- [ ] Any dependent changes are merged and published in downstream modules
46 changes: 0 additions & 46 deletions LOADER.md

This file was deleted.

Loading