Skip to content

Commit

Permalink
chore: redput: v1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
coderaiser committed Aug 30, 2023
1 parent 2ea4171 commit 55a115e
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 3 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2023.08.30, v1.9.0

feature:
- 2ea4171 redput: add -v, --version

2023.08.28, v1.8.0

feature:
Expand Down
1 change: 1 addition & 0 deletions bin/redput.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env node

import process from 'node:process';
import {redput} from '../lib/redput.js';

const {GITHUB_TOKEN} = process.env;
Expand Down
3 changes: 1 addition & 2 deletions lib/version.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {readFile} from 'fs/promises';
import {readFile} from 'node:fs/promises';

const {parse} = JSON;
const {pathname} = new URL('../package.json', import.meta.url);
Expand All @@ -9,4 +9,3 @@ export const version = async () => {

return `v${version}`;
};

1 change: 1 addition & 0 deletions lib/write/nested/nested.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import {
join,
} from 'node:path';
import rendy from 'rendy';
import process from 'node:process';
import {addRule} from './add-rule/add-rule.js';
import {insertTest} from './insert-test/insert-test.js';
import {prepareRule} from './prepare-rule/prepare-rule.js';
Expand Down
1 change: 1 addition & 0 deletions lib/write/simple.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import {
join,
} from 'node:path';
import rendy from 'rendy';
import process from 'node:process';

export const writeRule = async (name, data) => {
await mkdir(`./lib`, {
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.8.0",
"version": "1.9.0",
"description": "CLI tool to convert source from 🐊Putout Editor to files",
"main": "lib/redput.js",
"bin": {
Expand Down

0 comments on commit 55a115e

Please sign in to comment.