Skip to content

Commit 2800ff2

Browse files
committed
fix(prettier): stopped defining a direct prettier dependency, since that is expected with the config
1 parent e758b74 commit 2800ff2

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

README.md

+16
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,22 @@ form8ion plugin for projects that manage code style with prettier
2020
* [Dependencies](#dependencies)
2121
* [Verification](#verification)
2222

23+
## Features
24+
25+
* Configures prettier in the scaffolded project to extend the provided
26+
[shareable config](https://prettier.io/docs/en/configuration.html#sharing-configurations)
27+
* Installs the provided shareable config
28+
* Installs the related eslint config and configures eslint to use it
29+
30+
### Notes
31+
32+
* prettier will only be configured if a config scope is defined
33+
* the shareable config is expected to define a dependency on `prettier`, so the
34+
scaffolded project will not be configured to depend directly on `prettier`
35+
* the pretter and eslint config names are defined by convention, so packages
36+
that are named as `@<your-scope>/prettier-config` and
37+
`@<your-scope>/eslint-config-prettier` are expected to exist
38+
2339
## Usage
2440

2541
<!--consumer-badges start -->

src/scaffolder-test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ suite('scaffolder', () => {
2525

2626
const {devDependencies, eslint} = await scaffold({config: {scope}, projectRoot});
2727

28-
assert.deepEqual(devDependencies, ['prettier', configPackageName]);
28+
assert.deepEqual(devDependencies, [configPackageName]);
2929
assert.deepEqual(eslint, {configs: ['prettier']});
3030
assert.calledWith(
3131
configFile.write,

src/scaffolder.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ export default async function ({config, projectRoot}) {
1010

1111
return {
1212
eslint: {configs: ['prettier']},
13-
devDependencies: ['prettier', configPackageName]
13+
devDependencies: [configPackageName]
1414
};
1515
}

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

-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,5 @@ import {assert} from 'chai';
44
Then('the dependencies are defined', async function () {
55
const {devDependencies} = this.scaffoldResult;
66

7-
assert.include(devDependencies, 'prettier');
87
assert.include(devDependencies, `${this.scope}/prettier-config`);
98
});

0 commit comments

Comments
 (0)