Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/promote.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ if [[ ! -z "${CORE_VERSION}" ]]; then
fi

# publish to npm
yarn run lerna publish --conventional-commits --conventional-graduate --no-private --dist-tag=latest --yes
# yarn run lerna publish --conventional-commits --conventional-graduate --no-private --dist-tag=latest --yes

# dry run
# yarn run lerna version --conventional-commits --conventional-graduate --no-private --yes --no-git-tag-version --no-push
yarn run lerna version --conventional-commits --conventional-graduate --no-private --yes --no-git-tag-version --no-push

# immediately after promote - set up repo for next prerelease
yarn run lerna version preminor --force-publish --conventional-commits --no-private --yes --preid prerelease
3 changes: 2 additions & 1 deletion scripts/build-single-packages.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ async function createPackage(component) {
main: cjsRelative,
module: esmRelative,
typings: typesRelative,
version: packageJson.version
version: packageJson.version,
private: true
};

// use ensureFile to not having to create all the directories
Expand Down