Skip to content

Commit

Permalink
Revert "refactor: Remove Node 13.7/13.8 from supported versions"
Browse files Browse the repository at this point in the history
This reverts commit 92499c2.
  • Loading branch information
EntraptaJ committed May 12, 2020
1 parent e112a8d commit c0916b6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 15 deletions.
12 changes: 2 additions & 10 deletions .github/workflows/Push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,8 @@ jobs:
Test:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
node: ['13.9', '13.10', '13.11']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1.4.1
- uses: k-foss/npm-run-action@master
with:
node-version: ${{ matrix.node }}
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm ci
- name: Run Tests
run: npm run test
scriptName: 'test'
4 changes: 2 additions & 2 deletions .github/workflows/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['13.9', '13.10', '13.11']
node: ['13.7', '13.8', '13.9', '13.10', '13.11']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1.4.1
Expand All @@ -21,7 +21,7 @@ jobs:
registry-url: 'https://registry.npmjs.org'
- name: Install dependencies
run: npm ci
- name: Run Tests
- name: Install dependencies
run: npm run test

Publish:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)
![Libraries.io dependency status for latest release, scoped npm package](https://img.shields.io/librariesio/release/npm/@k-foss/ts-esnode)

This is a Node.JS Loader hook for Node.JS 13.9 or newer that transpiles TypeScript files into JavaScript using the `getFormat`, `resolve`, and `transformSource` hooks.
This is a Node.JS Loader hook for Node.JS 13.7 or newer that transpiles TypeScript files into JavaScript using the `getFormat`, `resolve`, and `transformSource` hooks.

## Usage

Expand Down Expand Up @@ -41,7 +41,7 @@ When you open this folder in VSCode you should get a notication to reopen in con

### Testing

**MUST HAVE NODE.JS v13.9 or newer**
**MUST HAVE NODE.JS v13.7 or newer**

To try this out, clone repo

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"typescript": ">=3.7"
},
"engines": {
"node": ">= 13.9"
"node": ">= 13.7"
},
"scripts": {
"pretest": "npm run build",
Expand Down

0 comments on commit c0916b6

Please sign in to comment.