Skip to content

Commit d7af3f8

Browse files
committed
Rename dist to build
1 parent c174fa7 commit d7af3f8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.eslintrc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
extends: ./dist/src/.eslintrc.json
1+
extends: ./build/src/.eslintrc.json

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ your `.eslintrc.json` to fit your needs and coding style.
3434
Then copy the Prettier configuration and `.editorconfig`:
3535

3636
```shell
37-
$ cp node_modules/eslint-config-standard-prettier-fp/dist/src/.prettierrc.json node_modules/eslint-config-standard-prettier-fp/dist/src/.editorconfig .
37+
$ cp node_modules/eslint-config-standard-prettier-fp/build/src/.prettierrc.json node_modules/eslint-config-standard-prettier-fp/build/src/.editorconfig .
3838
```
3939

4040
# Badge

src/.eslintrc.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -938,7 +938,7 @@ rules:
938938
# import/no-restricted-paths: 2
939939

940940
settings:
941-
# JSON files in `dist` are compiled from YAML in `src`
941+
# JSON files in `build` are compiled from YAML in `src` and `test`
942942
node:
943943
tryExtensions: [.js, .json, .node, .yml, .yaml]
944944
import/resolver:

test/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
const test = require('ava')
44
const execa = require('execa')
55

6-
const ESLINT_CONFIG = `${__dirname}/../dist/src/.eslintrc.json`
6+
const ESLINT_CONFIG = `${__dirname}/../build/src/.eslintrc.json`
77
const TEST_FILE = `${__dirname}/helpers/valid.js`
88

99
test('Smoke test', async t => {

0 commit comments

Comments
 (0)