-
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
177 additions
and
49 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,28 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**Minimal Script To Reproduce** | ||
|
||
``` | ||
const { transform } = require('camaro') | ||
// your code | ||
``` | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
- camaro versio: | ||
- Node version: | ||
- Operating system: |
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,15 @@ | ||
# Contributing to camaro | ||
|
||
* [Issues](#issues) | ||
* [Pull Requests](#pull-requests) | ||
|
||
## Issues | ||
|
||
* State version of node/camaro/OS. | ||
* Include the script which can reproduce the issue. | ||
|
||
## Pull Requests | ||
|
||
* Make sure all tests pass. | ||
* If new feature(s) is included, write test(s) for them as well. | ||
* Check the benchmark script to see if there's any performance regression. |
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,68 @@ | ||
jobs: | ||
|
||
- job: Windows | ||
pool: 'Hosted VS2017' | ||
|
||
variables: | ||
os_name: Windows | ||
|
||
strategy: | ||
matrix: | ||
node_8_x: | ||
node_version: 8.x | ||
node_9_x: | ||
node_version: 9.x | ||
node_10_x: | ||
node_version: 10.x | ||
node_11_x: | ||
node_version: 11.x | ||
node_12_x: | ||
node_version: 12.x | ||
steps: | ||
- template: azure-test.yml | ||
|
||
- job: Linux | ||
pool: | ||
vmImage: 'Ubuntu 16.04' | ||
|
||
variables: | ||
os_name: Linux | ||
|
||
strategy: | ||
matrix: | ||
node_8_x: | ||
node_version: 8.x | ||
node_9_x: | ||
node_version: 9.x | ||
node_10_x: | ||
node_version: 10.x | ||
node_11_x: | ||
node_version: 11.x | ||
node_12_x: | ||
node_version: 12.x | ||
|
||
steps: | ||
- template: azure-test.yml | ||
|
||
- job: OSX | ||
pool: | ||
vmImage: 'macOS 10.13' | ||
|
||
variables: | ||
os_name: OSX | ||
|
||
strategy: | ||
matrix: | ||
node_8_x: | ||
node_version: 8.x | ||
node_9_x: | ||
node_version: 9.x | ||
node_10_x: | ||
node_version: 10.x | ||
node_11_x: | ||
node_version: 11.x | ||
node_12_x: | ||
node_version: 12.x | ||
|
||
steps: | ||
- template: azure-test.yml |
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,11 @@ | ||
steps: | ||
|
||
- task: NodeTool@0 | ||
inputs: | ||
versionSpec: $(node_version) | ||
displayName: 'Install Node.js' | ||
|
||
- bash: | | ||
npm install | ||
npm run test | ||
displayName: 'Install and test' |
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
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
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