redput 2.4.1 → 2.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/ChangeLog
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import putout from 'putout';
|
|
2
|
-
import * as insertGetRulePlugin from './plugin-insert-get-rule/index.js';
|
|
3
2
|
import pluginPutout from '@putout/plugin-putout';
|
|
4
3
|
import nodejs from '@putout/plugin-nodejs';
|
|
5
4
|
import removeUnusedVariables from '@putout/plugin-remove-unused-variables';
|
|
5
|
+
import * as insertGetRulePlugin from './plugin-insert-get-rule/index.js';
|
|
6
6
|
|
|
7
7
|
export const addRule = (name, source, ruleOptions) => {
|
|
8
8
|
const {code} = putout(source, {
|
|
@@ -8,8 +8,8 @@ import {
|
|
|
8
8
|
dirname,
|
|
9
9
|
join,
|
|
10
10
|
} from 'node:path';
|
|
11
|
-
import rendy from 'rendy';
|
|
12
11
|
import process from 'node:process';
|
|
12
|
+
import rendy from 'rendy';
|
|
13
13
|
import {addRule} from './add-rule/add-rule.js';
|
|
14
14
|
import {insertTest} from './insert-test/insert-test.js';
|
|
15
15
|
import {prepareRule} from './prepare-rule/prepare-rule.js';
|
package/lib/write/simple.js
CHANGED