Skip to content

Commit

Permalink
upgrade deps, dates, CI
Browse files Browse the repository at this point in the history
  • Loading branch information
75lb committed Feb 3, 2024
1 parent 7cd4b57 commit a65c938
Show file tree
Hide file tree
Showing 14 changed files with 976 additions and 765 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
node-version: [12, 14, 16]
node-version: [14, 16, 18, 20, 21]

steps:
- uses: actions/checkout@v2
Expand All @@ -24,5 +24,5 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm install
- run: npm run test
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2012-21 Lloyd Brookes <[email protected]>
Copyright (c) 2012-24 Lloyd Brookes <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,6 @@ $ npm install --save-dev renamer

* * *

&copy; 2012-21 Lloyd Brookes \<[email protected]\>.
&copy; 2012-24 Lloyd Brookes \<[email protected]\>.

Tested by [test-runner](https://github.com/test-runner-js/test-runner).
6 changes: 4 additions & 2 deletions example/make-sandbox.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
#!/usr/bin/env node
import path from 'path'
import rimraf from 'rimraf'
import fs from 'node:fs'
import { createFixture } from '../test/lib/util.js'

rimraf.sync('sandbox')
/* Run this script in the `example` folder, creating `example/sandbox` */

fs.rmSync('sandbox', { recursive: true, force: true })

;[1, 2, 3, 4, 5].forEach(function (number) {
const fileName = path.join('sandbox', 'file' + number + '.test')
Expand Down
Loading

0 comments on commit a65c938

Please sign in to comment.