Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: TypeStrong/ts-node
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v8.7.0
Choose a base ref
...
head repository: TypeStrong/ts-node
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v8.8.0
Choose a head ref
  • 9 commits
  • 10 files changed
  • 2 contributors

Commits on Mar 3, 2020

  1. Add github actions workflow for testing (#971)

    * Add github actions workflow for testing
    
    * fix bug in build matrix
    cspotcode authored Mar 3, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    7e08a7b View commit details

Commits on Mar 4, 2020

  1. Fix issue templates (#974)

    * Update bug-report.md
    
    * Update feature-request.md
    cspotcode authored Mar 4, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    0c6c212 View commit details
  2. Fix issue templates (again) (#975)

    * Update bug-report.md
    
    * Update feature-request.md
    
    * Update bug-report.md
    
    * Update feature-request.md
    
    * Update feature-request.md
    
    * Update feature-request.md
    
    * Update bug-report.md
    cspotcode authored Mar 4, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    e8df418 View commit details

Commits on Mar 21, 2020

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    429cf6a View commit details
  2. Copy the full SHA
    2e9a2f1 View commit details
  3. Upgrade dev dependencies

    blakeembrey committed Mar 21, 2020
    Copy the full SHA
    cb70a4a View commit details
  4. Copy the full SHA
    aeb4817 View commit details
  5. Copy the full SHA
    fb17211 View commit details
  6. 8.8.0

    blakeembrey committed Mar 21, 2020
    Copy the full SHA
    3766cc9 View commit details
Showing with 415 additions and 697 deletions.
  1. +3 −0 .github/ISSUE_TEMPLATE/bug-report.md
  2. +3 −0 .github/ISSUE_TEMPLATE/feature-request.md
  3. +37 −0 .github/workflows/continuous-integration.yml
  4. +1 −1 README.md
  5. +287 −642 package-lock.json
  6. +8 −8 package.json
  7. +42 −31 src/index.spec.ts
  8. +11 −15 src/index.ts
  9. +5 −0 tests/issue-884/index.ts
  10. +18 −0 tests/issue-884/tsconfig.json
3 changes: 3 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
---
name: 'Bug report'
about: 'Create a report to help us improve'

---

### Expected Behavior
3 changes: 3 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-request.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
---
name: 'Feature request'
about: 'Suggest an idea for this project'

---

### Desired Behavior
37 changes: 37 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Continuous Integration
on: [push]
jobs:
test:
name: Test ${{ matrix.flavor }} ${{ matrix.node }} ${{ matrix.typescript }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
flavor: [1, 2, 3, 4]
include:
- flavor: 1
node: 6
typescript: typescript@latest
- flavor: 2
node: 13
typescript: typescript@latest
- flavor: 3
node: 13
typescript: typescript@2.7
- flavor: 4
node: 13
typescript: typescript@next
steps:
# checkout code
- uses: actions/checkout@v2
# install node
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
# lint, build, test
- run: npm install
- run: npm run build
- run: npm rm tslint
- run: npm install ${{ matrix.typescript }}
- run: npm run test-cov
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ![TypeScript Node](logo.svg)
# ![TypeScript Node](logo.svg?sanitize=true)

[![NPM version][npm-image]][npm-url]
[![NPM downloads][downloads-image]][downloads-url]
Loading