Skip to content

Commit

Permalink
feature: drop support of node < 16
Browse files Browse the repository at this point in the history
  • Loading branch information
coderaiser committed May 10, 2022
1 parent 54a02bc commit 6a201d5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
6 changes: 2 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,20 +39,18 @@
},
"homepage": "https://github.com/coderaiser/git-status-porcelain",
"devDependencies": {
"@cloudcmd/stub": "^2.3.2",
"coveralls": "^3.0.0",
"c8": "^7.11.2",
"eslint": "^8.15.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-putout": "^15.1.1",
"madrun": "^9.0.3",
"mock-require": "^3.0.3",
"nodemon": "^2.0.2",
"nyc": "^15.0.0",
"putout": "^26.0.1",
"supertape": "^7.2.3"
},
"engines": {
"node": ">=8"
"node": ">=16"
},
"dependencies": {},
"publishConfig": {
Expand Down
3 changes: 1 addition & 2 deletions test/porclain.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,12 @@ const {readFileSync} = require('fs');
const child_process = require('child_process');

const {reRequire} = require('mock-require');
const stub = require('@cloudcmd/stub');

const deleted = readFileSync(join(__dirname, 'fixture', 'deleted'), 'utf8');
const untracked = readFileSync(join(__dirname, 'fixture', 'untracked'), 'utf8');
const renamed = readFileSync(join(__dirname, 'fixture', 'renamed'), 'utf8');

const test = require('supertape');
const {test, stub} = require('supertape');
const porclain = require('..');

test('porclain', (t) => {
Expand Down

0 comments on commit 6a201d5

Please sign in to comment.