Skip to content

Commit 61cae02

Browse files
committed
dev: Change npm to yarn and add dev tools
1 parent d22927f commit 61cae02

22 files changed

+5048
-7903
lines changed

.gitignore

+26-8
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,39 @@
1-
# Dependencies
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
6+
# Dependency directories
27
node_modules
38

4-
# Build
9+
# Build directory
510
dist
611

7-
# Logs
8-
npm-debug.log
12+
# Editor's config directories
13+
.vscode
14+
.idea
15+
*.iml
16+
17+
# MacOS related files
18+
*.DS_Store
19+
.AppleDouble
20+
.LSOverride
21+
._*
922

1023
# Coverage
1124
coverage
1225
.nyc_output
1326

14-
# Editors
15-
.vscode
16-
.idea
17-
*.iml
27+
# Windows related files
28+
Thumbs.db
29+
ehthumbs.db
30+
Desktop.ini
31+
$RECYCLE.BIN/
32+
33+
# Optional npm cache directory
34+
.npm
1835

1936
# Sonar
2037
.scannerwork
2138
sonar-project.properties
39+
coverage.lcov

.prettierignore

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
# not supported files
2+
.prettierignore
3+
.dockerignore
4+
.env
5+
.gitignore
6+
.mailmap
7+
Dockerfile
8+
Jenkinsfile
9+
.editorconfig
10+
11+
# scripts
12+
*.sh
13+
14+
# generated files
15+
CHANGELOG.md
16+
yarn.lock
17+
package.json
18+
19+
# Logs
20+
logs
21+
*.log
22+
npm-debug.log*
23+
24+
# Dependency directories
25+
node_modules
26+
27+
# Build directory
28+
dist
29+
30+
# Editor's config directories
31+
.vscode
32+
.idea
33+
*.iml
34+
35+
# MacOS related files
36+
*.DS_Store
37+
.AppleDouble
38+
.LSOverride
39+
._*
40+
41+
# Windows related files
42+
Thumbs.db
43+
ehthumbs.db
44+
Desktop.ini
45+
$RECYCLE.BIN/
46+
47+
# Optional npm cache directory
48+
.npm
49+
50+
# Coverage
51+
coverage
52+
.nyc_output
53+
coverage.lcov
54+
55+
# Sonar
56+
.scannerwork
57+
sonar-project.properties

.prettierrc.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
printWidth: 100
2+
trailingComma: 'all'
3+
useTabs: true
4+
semi: true
5+
singleQuote: true
6+
bracketSpacing: true
7+
quoteProps: consistent
8+
arrowParens: always
9+
endOfLine: 'lf'
10+
overrides:
11+
- files: ['*.ts']
12+
options:
13+
parser: typescript
14+
- files: ['*.html']
15+
options:
16+
parser: angular
17+
printWidth: 200
18+
- files: ['*.scss']
19+
options:
20+
parser: scss
21+
printWidth: 200
22+
- files: ['*.json']
23+
options:
24+
parser: json
25+
useTabs: false
26+
- files: ['*.yml', '*.yaml']
27+
options:
28+
parser: yaml
29+
- files: ['*.md']
30+
options:
31+
parser: markdown
32+
proseWrap: preserve

.release-it.json

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
{
2+
"non-interactive": true,
3+
"dry-run": false,
4+
"verbose": true,
5+
"force": false,
6+
"pkgFiles": ["package.json"],
7+
"preReleaseId": null,
8+
"increment": "patch",
9+
"buildCommand": "npm run build",
10+
"changelogCommand": "npm run build:changelog",
11+
"safeBump": false,
12+
"requireCleanWorkingDir": false,
13+
"src": {
14+
"commit": true,
15+
"commitMessage": "release: V %s",
16+
"tag": true,
17+
"tagName": "%s",
18+
"tagAnnotation": "release: V %s",
19+
"push": true,
20+
"pushRepo": null,
21+
"beforeStartCommand": false,
22+
"afterReleaseCommand": "npm run post:release"
23+
},
24+
"npm": {
25+
"publish": true
26+
},
27+
"github": {
28+
"release": false
29+
},
30+
"dist": {
31+
"repo": false
32+
},
33+
"prompt": {
34+
"src": {
35+
"status": true,
36+
"commit": true,
37+
"tag": true,
38+
"push": true,
39+
"release": true,
40+
"publish": true
41+
},
42+
"dist": {
43+
"status": true,
44+
"commit": true,
45+
"tag": true,
46+
"push": true,
47+
"release": true,
48+
"publish": true
49+
}
50+
}
51+
}

.travis.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
language: node_js
22
node_js:
3-
- "8"
4-
- "6"
3+
- '10'
4+
- '12'
5+
- '13'
56
after_success:
67
- npm run coverage

CHANGELOG.md

Whitespace-only changes.

README.md

+41-36
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ Conf node module loader.
99

1010
## Installation
1111

12+
```bash
13+
yarn add @neo9/n9-node-conf
14+
```
15+
16+
or
17+
1218
```bash
1319
npm install --save @neo9/n9-node-conf
1420
```
@@ -24,11 +30,11 @@ Options:
2430
Example:
2531

2632
```ts
27-
import n9Conf from '@neo9/n9-node-conf'
33+
import n9Conf from '@neo9/n9-node-conf';
2834

2935
const conf = n9Conf({
30-
path: __dirname + '/../conf',
31-
})
36+
path: __dirname + '/../conf',
37+
});
3238
```
3339

3440
## Structure
@@ -55,75 +61,74 @@ The module will load these files, every file overwrites the one before:
5561

5662
## Example
5763

58-
5964
`package.json`
6065

6166
```json
6267
{
63-
"name": "my-app",
64-
"version": "0.1.2"
68+
"name": "my-app",
69+
"version": "0.1.2"
6570
}
6671
```
6772

6873
`conf/application.ts`
6974

7075
```js
7176
export default {
72-
http: {
73-
port: 6686
74-
}
75-
}
77+
http: {
78+
port: 6686,
79+
},
80+
};
7681
```
7782

7883
`conf/development.ts`
7984

8085
```js
81-
export default {}
86+
export default {};
8287
```
8388

8489
`conf/production.ts`
8590

8691
```js
8792
export default {
88-
http: {
89-
port: 80
90-
}
91-
}
93+
http: {
94+
port: 80,
95+
},
96+
};
9297
```
9398

9499
`loadConf.ts`
95100

96101
```js
97-
import n9Conf from '@neo9/n9-node-conf'
102+
import n9Conf from '@neo9/n9-node-conf';
98103

99-
const conf = n9Conf()
100-
console.log('conf =', conf)
104+
const conf = n9Conf();
105+
console.log('const conf =', conf);
101106
```
102107

103108
`node loadConf.ts`
104109

105-
```bash
106-
conf = {
107-
name: 'my-app',
108-
version: '0.1.2',
109-
env: 'development',
110-
http: {
111-
port: 5000
112-
}
113-
}
110+
```typescript
111+
const conf = {
112+
name: 'my-app',
113+
version: '0.1.2',
114+
env: 'development',
115+
http: {
116+
port: 5000,
117+
},
118+
};
114119
```
115120

116121
`NODE_ENV=production node loadConf.ts`
117122

118-
```bash
119-
conf = {
120-
name: 'my-app',
121-
version: '0.1.2',
122-
env: 'production',
123-
http: {
124-
port: 80
125-
}
126-
}
123+
```typescript
124+
const conf = {
125+
name: 'my-app',
126+
version: '0.1.2',
127+
env: 'production',
128+
http: {
129+
port: 80,
130+
},
131+
};
127132
```
128133

129134
## Logs

commitlint.config.js

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
module.exports = {
2+
parserPreset: {
3+
parserOpts: {
4+
headerPattern: /^([a-zA-Z0-9]*): ([a-zA-Z0-9-_' .]*)$/,
5+
headerCorrespondence: ['scope', 'subject'],
6+
},
7+
},
8+
rules: {
9+
'scope-empty': [2, 'never'],
10+
'scope-case': [2, 'always', 'lower-case'],
11+
'scope-max-length': [2, 'always', 12],
12+
'subject-empty': [2, 'never'],
13+
'subject-case': [2, 'always', ['sentence-case']],
14+
'subject-full-stop': [2, 'never', '.'],
15+
'subject-max-length': [2, 'always', 70],
16+
},
17+
};

0 commit comments

Comments
 (0)