Skip to content

Commit e87e363

Browse files
authored
Merge pull request #478 from form8ion/beta
2 parents 5f5b3ac + 9ee86c4 commit e87e363

14 files changed

+580
-2313
lines changed

Diff for: .babelrc

-1
This file was deleted.

Diff for: .commitlintrc.js renamed to .commitlintrc.cjs

File renamed without changes.

Diff for: .github/workflows/node-ci.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,8 @@ jobs:
1818
strategy:
1919
matrix:
2020
node:
21-
- 16.13.0
22-
- 18.0.0
23-
- 18
24-
- 20
21+
- 18.17.0
22+
- 20.6.1
2523
- 21
2624
steps:
2725
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

Diff for: .remarkrc.js renamed to .remarkrc.cjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// https://github.com/remarkjs/remark/tree/master/packages/remark-stringify#options
22
exports.settings = {
3-
listItemIndent: 1,
3+
listItemIndent: 'one',
44
emphasis: '_',
55
strong: '_',
66
bullet: '*',
@@ -11,4 +11,4 @@ exports.plugins = [
1111
'@form8ion/remark-lint-preset',
1212
['remark-toc', {tight: true}],
1313
['remark-usage', {heading: 'example'}]
14-
];
14+
];

Diff for: cucumber.mjs renamed to cucumber.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const base = {
22
formatOptions: {snippetInterface: 'async-await'},
3-
import: ['test/integration/features/**/*.mjs']
3+
import: ['test/integration/features/**/*.js']
44
};
55

66
export default base;

Diff for: example.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
// #### Import
2-
// remark-usage-ignore-next 2
3-
import {resolve} from 'path';
2+
// remark-usage-ignore-next
43
import stubbedFs from 'mock-fs';
54
import {dialects, projectTypes} from '@form8ion/javascript-core';
65
import {scaffold} from './lib/index.js';
76

87
// remark-usage-ignore-next
9-
stubbedFs({templates: stubbedFs.load(resolve(...[__dirname, 'templates']))});
8+
stubbedFs({templates: stubbedFs.load('templates')});
109

1110
// #### Execute
1211

0 commit comments

Comments
 (0)