-
Notifications
You must be signed in to change notification settings - Fork 0
/
.npmrc
28 lines (22 loc) · 973 Bytes
/
.npmrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# You can config any options listed here : https://docs.npmjs.com/misc/config
# Comments are starting with ; or # https://docs.npmjs.com/files/npmrc#comments
# Set loglevel to silent
loglevel=warn
# Set default custom/private registry
# registry = http://localhost:8081/repository/npm-all/
# Set default custom/private registry for scoped package
# Corporate package have to be scoped. This allows you to seamlessly use a mix
# of packages from the primary npm registry and one or more private registries,
# such as npm Enterprise.
# <scope_name>:registry=<registry_url>
#
# scope_have have to sctart with @
#
# @myscope:registry=https://mycustomregistry.example.org
# Disable git commit & tag when use npm version to prevent git hooks
git-tag-version=false
# Disable git commit-hook (don't affect husky, because hook are runned on pre-commit)
# commit-hooks=false
# Config npm version prefix
# To disable "v" prefix uncomment next line
# tag-version-prefix=" "