This repository was archived by the owner on Oct 2, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +119
-23
lines changed Expand file tree Collapse file tree 4 files changed +119
-23
lines changed Original file line number Diff line number Diff line change 1
- @basics:registry = https://registry.npmjs.org/
1
+ ; ;;;
2
+ ; npm userconfig file
3
+ ; this is a simple ini-formatted file
4
+ ; lines that start with semi-colons are comments.
5
+ ; read `npm help config` for help on the various options
6
+ ; ;;;
7
+
8
+ ; ;;;
9
+ ; all options with default values
10
+ ; ;;;
11
+ access = public
12
+ ; always-auth=false
13
+ ; also=null
14
+ ; bin-links=true
15
+ ; browser=null
16
+ ; ca=null
17
+ ; cafile=undefined
18
+ ; cache=/Users/zool/.npm
19
+ ; cache-lock-stale=60000
20
+ ; cache-lock-retries=10
21
+ ; cache-lock-wait=10000
22
+ ; cache-max=null
23
+ ; cache-min=10
24
+ ; cert=null
25
+ ; color=true
26
+ ; depth=null
27
+ ; description=true
28
+ ; dev=false
29
+ ; dry-run=false
30
+ ; editor=vim
31
+ ; engine-strict=false
32
+ ; force=false
33
+ ; fetch-retries=2
34
+ ; fetch-retry-factor=10
35
+ ; fetch-retry-mintimeout=10000
36
+ ; fetch-retry-maxtimeout=60000
37
+ ; git=git
38
+ ; git-tag-version=true
39
+ ; global=false
40
+ ; globalconfig=/Users/zool/.node/etc/npmrc
41
+ ; group=20
42
+ ; heading=npm
43
+ ; if-present=false
44
+ ; ignore-scripts=false
45
+ ; init-module=/Users/zool/.npm-init.js
46
+ ; init-author-name=
47
+ ; init-author-email=
48
+ ; init-author-url=
49
+ ; init-version=1.0.0
50
+ ; init-license=ISC
51
+ ; json=false
52
+ ; key=null
53
+ ; link=false
54
+ ; local-address=undefined
55
+ ; loglevel=warn
56
+ ; long=false
57
+ ; message=%s
58
+ ; node-version=4.1.2
59
+ ; npat=false
60
+ ; onload-script=null
61
+ ; only=null
62
+ ; optional=true
63
+ ; parseable=false
64
+ ; prefix=/usr/local/Cellar/node/4.1.2
65
+ ; production=false
66
+ ; progress=true
67
+ ; proprietary-attribs=true
68
+ ; proxy=null
69
+ ; https-proxy=null
70
+ ; user-agent=npm/{npm-version} node/{node-version} {platform} {arch}
71
+ ; rebuild-bundle=true
72
+ ; registry=https://registry.npmjs.org/
73
+ ; rollback=true
74
+ ; save=false
75
+ ; save-bundle=false
76
+ ; save-dev=false
77
+ ; save-exact=false
78
+ ; save-optional=false
79
+ ; save-prefix=^
80
+ ; scope=
81
+ ; searchopts=
82
+ ; searchexclude=null
83
+ ; searchsort=name
84
+ ; shell=/usr/local/bin/bash
85
+ ; shrinkwrap=true
86
+ ; sign-git-tag=false
87
+ ; strict-ssl=true
88
+ ; tag=latest
89
+ ; tag-version-prefix=v
90
+ ; tmp=/var/folders/7y/j4hhyf5j0f19rqlvzwk99_2w0000gq/T
91
+ ; unicode=true
92
+ ; unsafe-perm=true
93
+ ; usage=false
94
+ ; user=503
95
+ ; userconfig=/Users/zool/.npmrc
96
+ ; umask=18
97
+ ; version=false
98
+ ; versions=false
99
+ ; viewer=man
100
+ ; _exit=true
101
+ ; globalignorefile=/Users/zool/.node/etc/npmignore
Original file line number Diff line number Diff line change
1
+ {
2
+ "verifyConditions": [
3
+ "@semantic-release/changelog",
4
+ "@semantic-release/npm",
5
+ "@semantic-release/git"
6
+ ],
7
+ "prepare": [
8
+ "@semantic-release/changelog",
9
+ "@semantic-release/npm",
10
+ {
11
+ "path": "@semantic-release/git",
12
+ "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
13
+ }
14
+ ],
15
+ "publish": ["@semantic-release/github"]
16
+ }
Original file line number Diff line number Diff line change 38
38
},
39
39
"files.associations" : {
40
40
".postcssrc" : " json" ,
41
+ ".releaserc" : " json" ,
41
42
".stylelintrc" : " json" ,
42
43
".vcmrc" : " json" ,
43
44
"*.css" : " postcss" ,
44
45
"*.pcss" : " postcss"
45
- },
46
+ }
46
47
},
47
48
"extensions" : {
48
49
"recommendations" : [
Original file line number Diff line number Diff line change 27
27
" @commitlint/config-conventional"
28
28
]
29
29
},
30
- "release" : {
31
- "verifyConditions" : [
32
- " @semantic-release/changelog" ,
33
- " @semantic-release/npm" ,
34
- " @semantic-release/git"
35
- ],
36
- "prepare" : [
37
- " @semantic-release/changelog" ,
38
- " @semantic-release/npm" ,
39
- {
40
- "path" : " @semantic-release/git" ,
41
- "message" : " chore(release): ${nextRelease.version} [skip ci]\n\n ${nextRelease.notes}"
42
- }
43
- ],
44
- "publish" : [
45
- " @semantic-release/github"
46
- ]
47
- },
48
- "publishConfig" : {
49
- "access" : " public"
50
- },
51
30
"files" : [
52
31
" lib" ,
53
32
" src"
You can’t perform that action at this time.
0 commit comments