Skip to content

Commit

Permalink
feat: Add ECMAScript 6 (ES6) support (#255)
Browse files Browse the repository at this point in the history
  • Loading branch information
dplewis authored Jul 7, 2024
1 parent 68ba614 commit bee437a
Show file tree
Hide file tree
Showing 20 changed files with 7,571 additions and 15,463 deletions.
6 changes: 0 additions & 6 deletions .babelrc

This file was deleted.

14 changes: 3 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,14 @@ jobs:
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.NODE_VERSION }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.NODE_VERSION }}
- name: Cache Node.js modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ matrix.NODE_VERSION }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-${{ matrix.NODE_VERSION }}-
cache: npm
- name: Install dependencies
run: npm ci
- name: Build package
run: npm run build
- name: Run tests
run: npm run test
- name: Code coverage
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,6 @@ node_modules

# Optional REPL history
.node_repl_history

# Mac DS_Store files
.DS_Store
Empty file removed .npmignore
Empty file.
9 changes: 6 additions & 3 deletions .nycrc
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
{
"all": true,
"reporter": [
"lcov",
"text-summary"
],
"include": [
"src/**/*.js"
],
"exclude": [
"**/spec/**",
"lib/"
"**/spec/**"
]
}
}
Loading

0 comments on commit bee437a

Please sign in to comment.