diff --git a/.github/workflows/preview-release.yml b/.github/workflows/preview-release.yml index 52b5c2d4..d6ffd5f2 100644 --- a/.github/workflows/preview-release.yml +++ b/.github/workflows/preview-release.yml @@ -19,27 +19,11 @@ jobs: node-version: 20 cache: pnpm -# Disabled due to https://github.com/tj-actions/changed-files/issues/2463 -# - name: Run changed-files -# id: changed-files -# uses: tj-actions/changed-files@v44 -# with: -# separator: ' ' -# dir_names: 'true' -# dir_names_max_depth: '2' # truncates the path to packages/package-name -# files: | -# packages/** - - name: install dependencies run: pnpm install - name: build run: pnpm build -# - name: publish preview -# if: ${{ steps.changed-files.outputs.all_changed_files_count > 0 }} -# env: -# CHANGED_DIRS: ${{ steps.changed-files.outputs.all_changed_files }} -# # run: | -# # node scripts/get-deps-to-publish.js -# run: pnpm dlx pkg-pr-new@0.0 publish --pnpm './packages/*' + - name: publish preview + run: pnpm dlx pkg-pr-new@0.0 publish --bin --pnpm './packages/*' diff --git a/scripts/get-deps-to-publish.js b/scripts/get-deps-to-publish.js deleted file mode 100644 index 66d61851..00000000 --- a/scripts/get-deps-to-publish.js +++ /dev/null @@ -1,65 +0,0 @@ -/** - * This tool is used by the pr ci to determine the packages that need to be published to the pkg-pr-new registry. - * In order to avoid situations where only @sveltejs/cli-core would be published, because it's the only modified package, - * this tool will also determine the dependent packages and also publish those. - * PR: https://github.com/svelte-add/svelte-add/pull/408 - */ - -// @ts-check -import { execSync } from 'node:child_process'; -import { relative, join } from 'node:path'; -import { existsSync } from 'node:fs'; -import process from 'node:process'; - -if (!process.env.CHANGED_DIRS) throw new Error('CHANGED_DIRS is missing'); - -const json = execSync('pnpm -r list --only-projects --json').toString('utf8'); -const repoPackages = - /** @type {Array }>} */ ( - JSON.parse(json) - ); - -const modifiedDirs = process.env.CHANGED_DIRS.split(' ').filter((dir) => - existsSync(join(dir, 'package.json')) -); -const packagesToPublish = new Set(modifiedDirs); - -// keep looping until we've acquired all dependents -let prev = 0; -while (packagesToPublish.size !== prev) { - prev = packagesToPublish.size; - for (const pkg of packagesToPublish) { - const dependents = getDependents(pkg); - dependents.forEach((dep) => packagesToPublish.add(dep)); - } -} - -// publishes packages to pkg-pr-new -const paths = Array.from(packagesToPublish) - // remove all private packages - .filter((dir) => repoPackages.find((pkg) => pkg.path.endsWith(dir))?.private === false) - .join(' '); - -if (paths) { - console.log(`publishing ${paths}`); - execSync(`pnpm dlx pkg-pr-new@0.0 publish --pnpm ${paths}`, { stdio: 'inherit' }); -} - -/** - * Finds all dependents and returns their relative paths. - * @param {string} path - * @return {string[]} - */ -function getDependents(path) { - const pkg = repoPackages.find((pkg) => pkg.path.endsWith(path)); - if (!pkg) throw new Error(`package ${path} doesn't exist in this repo`); - - const dependents = repoPackages.filter( - (dep) => - !dep.private && - (dep.dependencies?.[pkg.name] || - dep.devDependencies?.[pkg.name] || - dep.peerDependencies?.[pkg.name]) - ); - return dependents.map((dep) => relative('.', dep.path)); -}