From 99c3add40a7aeaada805010afbd5b2156a300915 Mon Sep 17 00:00:00 2001 From: Mok Date: Sun, 11 Jul 2021 00:24:18 +0800 Subject: [PATCH] Added missing README --- package-lock.json | 2 +- package.json | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 433314b..033366b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "better-npm-audit", - "version": "3.0.0", + "version": "3.0.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 23d4065..e6d4654 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "better-npm-audit", - "version": "3.0.0", + "version": "3.0.1", "author": "Jee Mok ", "description": "Reshape npm audit into the way the community would like, by the community itself, to encourage more people to do security audits.", "license": "MIT", @@ -45,8 +45,9 @@ "lint": "eslint .", "qc": "npm run test && npm run lint", "clean": "rimraf lib", + "build:after": "cp README.md lib", "build:clean": "npm run clean && tsc", - "build": "npm run qc && npm run build:clean", + "build": "npm run qc && npm run build:clean && npm run build:after", "publish:live": "npm run build && npm publish lib --tag latest", "publish:next": "npm run build && npm publish lib --tag next" },