|
| 1 | +import { PROJECT_ROOT, TARBALL_DIR, toTarballName } from './generate-tarballs'; |
| 2 | + |
| 3 | +import { exec } from '../../../utils/cmd'; |
| 4 | +import path from 'path'; |
| 5 | +import fs from 'fs'; |
| 6 | +import { APPLIED_STRATEGY, Package } from '../../../utils/package'; |
| 7 | + |
| 8 | +export async function generateTypesTarballs( |
| 9 | + config: Map<string, string | number | boolean | null>, |
| 10 | + packages: Map<string, Package>, |
| 11 | + strategy: Map<string, APPLIED_STRATEGY> |
| 12 | +) { |
| 13 | + const tarballDir = path.join(TARBALL_DIR, packages.get('root')!.pkgData.version); |
| 14 | + const tmpDir = path.join(PROJECT_ROOT, 'tmp/types', packages.get('root')!.pkgData.version); |
| 15 | + fs.mkdirSync(tmpDir, { recursive: true }); |
| 16 | + |
| 17 | + // for each public package |
| 18 | + // if that package has types |
| 19 | + // generate a types tarball |
| 20 | + // |
| 21 | + // to do this we |
| 22 | + // copy the types directory to a temporary directory |
| 23 | + // create a new package.json |
| 24 | + |
| 25 | + for (const [, strat] of strategy) { |
| 26 | + if (!strat.typesPublish || strat.private || strat.types === 'private') { |
| 27 | + continue; |
| 28 | + } |
| 29 | + |
| 30 | + if (strat.types === 'alpha') { |
| 31 | + const tmpTypesDir = path.join(tmpDir, strat.typesPublishTo); |
| 32 | + fs.mkdirSync(tmpTypesDir, { recursive: true }); |
| 33 | + |
| 34 | + // create a new package.json |
| 35 | + const pkg = packages.get(strat.name)!; |
| 36 | + const pkgData = pkg.pkgData; |
| 37 | + const newPkgData = { |
| 38 | + name: strat.typesPublishTo, |
| 39 | + version: pkgData.version, |
| 40 | + files: |
| 41 | + pkgData.files?.filter( |
| 42 | + (f) => f !== 'src' && f !== 'dist' && f !== 'addon' && f !== 'blueprints' && !f.startsWith('addon-main') |
| 43 | + ) ?? [], |
| 44 | + private: false, |
| 45 | + description: `Type Declarations for ${pkgData.name}`, |
| 46 | + author: pkgData.author, |
| 47 | + license: pkgData.license, |
| 48 | + repository: pkgData.repository, |
| 49 | + // try without any peers first |
| 50 | + // peerDependencies: pkgData.peerDependencies, |
| 51 | + // peerDependenciesMeta: pkgData.peerDependenciesMeta, |
| 52 | + }; |
| 53 | + const newPkgJson = path.join(tmpTypesDir, 'package.json'); |
| 54 | + fs.writeFileSync(newPkgJson, JSON.stringify(newPkgData, null, 2)); |
| 55 | + |
| 56 | + // // copy the types directory |
| 57 | + // const typesDir = path.join(path.dirname(pkg.filePath), 'unstable-preview-types'); |
| 58 | + // if (!fs.existsSync(typesDir)) { |
| 59 | + // throw new Error(`Types directory does not exist: ${typesDir}`); |
| 60 | + // } |
| 61 | + // const typesDest = path.join(tmpTypesDir, 'unstable-preview-types'); |
| 62 | + // fs.mkdirSync(typesDest, { recursive: true }); |
| 63 | + // await exec(`cp -r ${typesDir}/* ${typesDest}`); |
| 64 | + |
| 65 | + // copy files that are needed |
| 66 | + const files = pkgData.files ?? []; |
| 67 | + for (const file of files) { |
| 68 | + const src = path.join(path.dirname(pkg.filePath), file); |
| 69 | + const dest = path.join(tmpTypesDir, file); |
| 70 | + fs.mkdirSync(path.dirname(dest), { recursive: true }); |
| 71 | + await exec(`cp -r ${src} ${dest}`); |
| 72 | + } |
| 73 | + |
| 74 | + // create the tarball |
| 75 | + const tarballName = toTarballName(strat.typesPublishTo); |
| 76 | + const tarballPath = path.join(tarballDir, `${tarballName}-${pkg.pkgData.version}.tgz`); |
| 77 | + // pack the new package and put it in the tarballs directory |
| 78 | + const result = await exec({ |
| 79 | + cwd: tmpTypesDir, |
| 80 | + cmd: `npm pack --pack-destination=${tarballDir}`, |
| 81 | + condense: false, |
| 82 | + }); |
| 83 | + console.log(result); |
| 84 | + |
| 85 | + // update the package with the tarball path |
| 86 | + pkg.typesTarballPath = tarballPath; |
| 87 | + } else { |
| 88 | + throw new Error(`Oops! Time to upgrade tis script to handled types strategy: ${strat.types}`); |
| 89 | + } |
| 90 | + } |
| 91 | +} |
0 commit comments