From 07231affdc7ab7b37706fa4ce31bd4f878d2f9d1 Mon Sep 17 00:00:00 2001 From: Johannes Hoppe Date: Fri, 26 Jan 2024 18:03:12 +0100 Subject: [PATCH] 2.0.0-beta.1 - fix broken npm package --- src/package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/package.json b/src/package.json index ddc6076..2a67b7e 100644 --- a/src/package.json +++ b/src/package.json @@ -1,6 +1,6 @@ { "name": "angular-cli-ghpages", - "version": "2.0.0-beta", + "version": "2.0.0-beta.1", "description": "Deploy your Angular app to GitHub Pages or Cloudflare Pages directly from the Angular CLI (ng deploy)", "main": "index.js", "bin": { @@ -12,6 +12,7 @@ "build": "tsc -p tsconfig.build.json", "postbuild": "copyfiles builders.json collection.json ng-add-schema.json package.json angular-cli-ghpages deploy/schema.json dist && copyfiles ../README.md dist/README.md", "test": "jest", + "prepublishOnly": "echo \"MAKE SURE TO TYPE 'npm run publish-to-npm' AND NOT 'npm publish'!\"", "publish-to-npm": "npm run build && cd dist && npm publish" }, "schematics": "./collection.json",