diff --git a/.changeset-staged/README.md b/.changeset-staged/README.md new file mode 100644 index 000000000..40219ca38 --- /dev/null +++ b/.changeset-staged/README.md @@ -0,0 +1,7 @@ +# Changeset Staged + +This is the directory for changesets that are going to submit to the next release. + +Because we want to keep both the partial release strategy and submitting changeset with the pull request, which has some conflicts with the default changeset strategy. + +Will figure out a proper solution in the future. diff --git a/.dockerignore b/.dockerignore index c73df52ba..6ef1e2ac4 100644 --- a/.dockerignore +++ b/.dockerignore @@ -25,7 +25,14 @@ cache .idea/ *.pem .history -.vscode .git -.github .gitignore + +.changeset +.changeset-staged +.devcontainer +.github +.husky +.parcel-cache +.scripts +.vscode diff --git a/.scripts/package.sh b/.scripts/package.sh index 3ff796dd5..dceb589ea 100755 --- a/.scripts/package.sh +++ b/.scripts/package.sh @@ -12,7 +12,7 @@ NODE_ENV=production pnpm i echo Prune files # Some node packages use `src` as their dist folder, so ignore them from the rm list in the end find \ -.git .changeset .devcontainer .github .husky .parcel-cache .scripts .vscode pnpm-*.yaml *.js \ +.git .changeset .changeset-staged .devcontainer .github .husky .parcel-cache .scripts .vscode pnpm-*.yaml *.js \ packages/**/src \ packages/**/*.config.js packages/**/*.config.ts packages/**/tsconfig*.json \ ! -path '**/node_modules/**' \