Skip to content
This repository was archived by the owner on Oct 2, 2024. It is now read-only.

Commit 031bba9

Browse files
fix(clean): splitted configuration in different files
1 parent 29ceba3 commit 031bba9

File tree

4 files changed

+119
-23
lines changed

4 files changed

+119
-23
lines changed

.npmrc

Lines changed: 101 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,101 @@
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

.releaserc

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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+
}

config.code-workspace

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,12 @@
3838
},
3939
"files.associations": {
4040
".postcssrc": "json",
41+
".releaserc": "json",
4142
".stylelintrc": "json",
4243
".vcmrc": "json",
4344
"*.css": "postcss",
4445
"*.pcss": "postcss"
45-
},
46+
}
4647
},
4748
"extensions": {
4849
"recommendations": [

package.json

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -27,27 +27,6 @@
2727
"@commitlint/config-conventional"
2828
]
2929
},
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-
},
5130
"files": [
5231
"lib",
5332
"src"

0 commit comments

Comments
 (0)