Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
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.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
9 changes: 9 additions & 0 deletions .github/ISSUE_TEMPLATE/custom-issue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
name: Custom issue
about: Describe this issue's purpose here.
title: ''
labels: ''
assignees: ''

---

20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
14 changes: 14 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Issue #<NUMBER HERE>
<OVERALL SUMMARY OF PULL REQUEST>

### Changes
- <INSERT DESCRIPTION OF CHANGES>
- <SUB NOTES OF DESCRIPTIONS>
- <SUMMARIZE ALL COMMITS IN PULL REQUEST>

### Flags
- <DESCRIBE ISSUES OR HOLDS FOR REVIEWERS>

### Related Issues
- Issue #<NUMBER HERE>
- Pull Request #<NUMBER HERE>
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,4 @@ typings/
userdata.json

# build output
lib
umd
23 changes: 12 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: node_js
node_js:
- '8'
- '8'
dist: trusty
before_install: |
set -e
Expand All @@ -10,19 +10,20 @@ before_install: |
install: |
set -e
date
npm install
npm install -g lerna@^3.15.0
lerna bootstrap 2>&1
date
script: npm run build && npm run test 2>&1
script: npm run test 2>&1
deploy:
provider: script
script:
- if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then bash ./.travis/deploy.sh; fi
skip_cleanup: true
on:
all_branches: true
repo: accordproject/markdown-transform
provider: script
script:
- 'if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then bash ./.travis/deploy.sh; fi'
skip_cleanup: true
on:
all_branches: true
repo: accordproject/markdown-transform
after_failure: tail -n +1 -- /home/travis/.npm/_logs/*-debug.log
after_success:
after_success:
cache:
directories:
- node_modules
Expand Down
2 changes: 1 addition & 1 deletion .travis/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export VERSION=$(node -e "console.log(require('${DIR}/package.json').version)")

# Publish with tag
echo "Pushing with tag ${TAG}"
npm publish --tag="${TAG}" 2>&1
lerna exec -- npm publish --tag="${TAG}" 2>&1

# Check that all required modules have been published to npm and are retrievable
for j in ${NPM_MODULES}; do
Expand Down
4 changes: 2 additions & 2 deletions .travis/stable.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ echo "NPM_TOKEN " ${NPM_TOKEN}
npm config set registry https://registry.npmjs.org/
npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN}

npm publish --tag="${NPM_TAG}" 2>&1
echo "Published to npm."
lerna publish --yes --conventional-commits -m "chore(release): publish %s" --force-publish=*
echo "Published to npm using lerna."
4 changes: 2 additions & 2 deletions .travis/unstable.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ echo "NPM_TOKEN " ${NPM_TOKEN}
npm config set registry https://registry.npmjs.org/
npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN}

npm publish --tag="${NPM_TAG}" 2>&1
echo "Published to npm."
lerna publish --yes --canary --conventional-commits -m "chore(release): publish %s"
echo "Published to npm using lerna."
File renamed without changes.
13 changes: 13 additions & 0 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"lerna": "3.15.0",
"packages": [
"packages/*"
],
"version": "0.1.15",
"hoist": true,
"command": {
"publish": {
"allowBranch": "master"
}
}
}
Loading