Skip to content

Commit

Permalink
chore: redput: v1.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
coderaiser committed Sep 14, 2023
1 parent e3ccdee commit e36f83c
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 1 deletion.
25 changes: 25 additions & 0 deletions .madrun.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import {run} from 'madrun';

const NODE_OPTIONS = `'--loader escover --no-warnings'`;

const env = {
ESCOVER_FORMAT: 'files',
NODE_OPTIONS,
};

export default {
'lint': () => 'putout .',
'fresh:lint': () => run('lint', '--fresh'),
'lint:fresh': () => run('lint', '--fresh'),
'fix:lint': () => run('lint', '--fix'),
'test': () => `tape 'test/**/*.js' '{lib,bin}/**/*.spec.{js,mjs}'`,
'test:mock': async () => [env, await run('test:only')],
'watch:test': async () => await run('watcher', await run('test')),
'watch:tape': () => 'nodemon -w test -w lib --exec tape',
'watch:lint': async () => await run('watcher', await run('lint')),
'watcher': () => 'nodemon -w test -w lib -w bin --exec',
'coverage': async () => `c8 ${await run('test')}`,
'coverage:es': async () => [env, `escover ${await run('test')}`],
'report': () => 'c8 report --reporter=lcov',
'wisdom': () => run(['lint', 'coverage']),
};
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2023.09.14, v1.10.1

feature:
- e3ccdee package: putout v32.0.1
- b70891d package: @putout/plugin-remove-unused-variables v7.0.0

2023.09.05, v1.10.0

fix:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "redput",
"version": "1.10.0",
"version": "1.10.1",
"description": "CLI tool to convert source from 🐊Putout Editor to files",
"main": "lib/redput.js",
"bin": {
Expand Down

0 comments on commit e36f83c

Please sign in to comment.