diff options
author | silverwind <me@silverwind.io> | 2019-05-16 21:33:54 +0200 |
---|---|---|
committer | techknowlogick <techknowlogick@gitea.io> | 2019-05-16 15:33:54 -0400 |
commit | 04f996f1f977fe00cc5ef55ac0548827221f9226 (patch) | |
tree | cef1eec973f4ae288ec4b6c51ed0afb161845941 /package.json | |
parent | 68a83cc5a240504e7d35ed2cdc1fae889fc08a1b (diff) | |
download | gitea-04f996f1f977fe00cc5ef55ac0548827221f9226.tar.gz gitea-04f996f1f977fe00cc5ef55ac0548827221f9226.zip |
remove and disable package-lock (#6969)
* remove and disable package-lock
Using exact versions in package.json has the same effect as lockfiles
without all the troubles the lockfiles bring (different versions of
package manager generating different lockfiles primarily).
Ensured we only use exact versions in package.json and stopped
generation of new lockfiles via .npmrc which is support by both the npm
and yarn package managers.
Fixes: https://github.com/go-gitea/gitea/issues/6967
* enable save-exact
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package.json b/package.json index 1bbe6cf8ae..94bf01f909 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "eslint": "5.16.0", "less": "3.9.0", "less-plugin-clean-css": "1.5.1", - "lesshint": "^6.3.6", + "lesshint": "6.3.6", "postcss-cli": "6.1.2" }, "browserslist": [ |