diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 12546e9..dcb6261 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -10,4 +10,4 @@ First and foremost, thank you for taking an interest to contribute to _fxl.js_. * Bump the version in `packages/core/package.json`. * Update the API documentation by running `yarn docs`. * Create a PR to merge to the upstream `develop` branch. -* Publish the package by running `yarn publish` upstream. +* Publish the package by running `yarn publish-to-npm` upstream. diff --git a/package.json b/package.json index 51c0b24..91d132a 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "license" : "Apache-2.0 License", "scripts": { "build": "yarn nx build core", - "publish": "yarn build && cd dist/packages/core && yarn publish --access public", + "publish-to-npm": "yarn build && cd dist/packages/core && yarn publish --access public", "docs": "yarn build && cd packages/core/src && npx typedoc index.ts --out ../../../api-docs --readme ../../../README.md" }, "private": true,