Skip to content

Commit 7eec709

Browse files
committed
feat(config-file): extended the defined prettier config from the config file
1 parent 67d997a commit 7eec709

File tree

7 files changed

+238
-31
lines changed

7 files changed

+238
-31
lines changed

package-lock.json

+191-26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+4
Original file line numberDiff line numberDiff line change
@@ -85,5 +85,9 @@
8585
"rollup": "2.75.7",
8686
"rollup-plugin-auto-external": "2.0.0",
8787
"sinon": "14.0.0"
88+
},
89+
"dependencies": {
90+
"@form8ion/config-file": "^1.0.1",
91+
"@form8ion/core": "^1.8.0"
8892
}
8993
}

src/scaffolder-test.js

+22-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,35 @@
1+
import {fileTypes} from '@form8ion/core';
2+
import * as configFile from '@form8ion/config-file';
3+
14
import {assert} from 'chai';
25
import any from '@travi/any';
6+
import sinon from 'sinon';
37

48
import scaffold from './scaffolder';
59

610
suite('scaffolder', () => {
11+
let sandbox;
12+
13+
setup(() => {
14+
sandbox = sinon.createSandbox();
15+
16+
sandbox.stub(configFile, 'write');
17+
});
18+
19+
teardown(() => sandbox.restore());
20+
721
test('that prettier is scaffolded if config is provided', async () => {
822
const scope = `@${any.word()}`;
23+
const projectRoot = any.string();
24+
const configPackageName = `${scope}/prettier-config`;
925

10-
const {devDependencies} = await scaffold({config: {scope}});
26+
const {devDependencies} = await scaffold({config: {scope}, projectRoot});
1127

12-
assert.deepEqual(devDependencies, ['prettier', `${scope}/prettier-config`]);
28+
assert.deepEqual(devDependencies, ['prettier', configPackageName]);
29+
assert.calledWith(
30+
configFile.write,
31+
{path: projectRoot, format: fileTypes.JSON, name: 'prettier', config: configPackageName}
32+
);
1333
});
1434

1535
test('that prettier is not scaffolded if no config is provided', async () => {

src/scaffolder.js

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
1-
export default function ({config}) {
1+
import {fileTypes} from '@form8ion/core';
2+
import {write} from '@form8ion/config-file';
3+
4+
export default async function ({config, projectRoot}) {
25
if (!config) return {};
36

4-
return {devDependencies: ['prettier', `${config.scope}/prettier-config`]};
7+
const configPackageName = `${config.scope}/prettier-config`;
8+
9+
await write({path: projectRoot, format: fileTypes.JSON, name: 'prettier', config: configPackageName});
10+
11+
return {devDependencies: ['prettier', configPackageName]};
512
}

test/integration/features/scaffolder.feature

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Feature: Scaffolder
44
Given a prettier config is defined
55
When the project is scaffolded
66
Then the dependencies are defined
7+
And the config file is created
78

89
Scenario: no config provided
910
Given no prettier config is defined

test/integration/features/step_definitions/common-steps.mjs

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,16 @@ After(function () {
1313
});
1414

1515
When('the project is scaffolded', async function () {
16+
this.scaffoldRoot = process.cwd();
17+
1618
// eslint-disable-next-line import/no-extraneous-dependencies,import/no-unresolved
1719
const {scaffold} = await import('@form8ion/prettier');
1820

1921
stubbedFs({
2022
node_modules: stubbedNodeModules
2123
});
2224

23-
this.scaffoldResult = await scaffold({projectRoot: process.cwd(), ...this.scope && {config: {scope: this.scope}}});
25+
this.scaffoldResult = await scaffold({projectRoot: this.scaffoldRoot, ...this.scope && {config: {scope: this.scope}}});
2426
});
2527

2628
Then('prettier is not configured', async function () {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import {promises as fs} from 'node:fs';
2+
3+
import {Then} from '@cucumber/cucumber';
4+
import {assert} from 'chai';
5+
6+
Then('the config file is created', async function () {
7+
assert.equal(await fs.readFile(`${this.scaffoldRoot}/.prettierrc.json`, 'utf-8'), `"${this.scope}/prettier-config"`);
8+
});

0 commit comments

Comments
 (0)