Skip to content

Commit 4884821

Browse files
committed
feat(libnpmpack): write tarball file when dryRun === false
1 parent f3fbeea commit 4884821

File tree

2 files changed

+50
-0
lines changed

2 files changed

+50
-0
lines changed

workspaces/libnpmpack/lib/index.js

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
const pacote = require('pacote')
44
const npa = require('npm-package-arg')
55
const runScript = require('@npmcli/run-script')
6+
const path = require('path')
7+
const util = require('util')
8+
const writeFile = util.promisify(require('fs').writeFile)
69

710
module.exports = pack
811
async function pack (spec = 'file:.', opts = {}) {
@@ -33,6 +36,14 @@ async function pack (spec = 'file:.', opts = {}) {
3336
integrity: manifest._integrity,
3437
})
3538

39+
// check for explicit `false` so the default behavior is to skip writing to disk
40+
if (opts.dryRun === false) {
41+
const filename = `${manifest.name}-${manifest.version}.tgz`
42+
.replace(/^@/, '').replace(/\//, '-')
43+
const destination = path.resolve(opts.packDestination, filename)
44+
await writeFile(destination, tarball)
45+
}
46+
3647
if (spec.type === 'directory') {
3748
// postpack
3849
await runScript({

workspaces/libnpmpack/test/index.js

+39
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
'use strict'
22

33
const t = require('tap')
4+
const fs = require('fs')
5+
const path = require('path')
46
const pack = require('../lib/index.js')
57
const tnock = require('./fixtures/tnock.js')
68

@@ -29,6 +31,43 @@ t.test('packs from local directory', async t => {
2931
})
3032
})
3133

34+
t.test('writes tarball to file when dryRun === false', async t => {
35+
const testDir = t.testdir({
36+
'package.json': JSON.stringify({
37+
name: 'my-cool-pkg',
38+
version: '1.0.0',
39+
scripts: {
40+
prepack: 'touch prepack',
41+
postpack: 'touch postpack',
42+
},
43+
}, null, 2),
44+
})
45+
46+
const cwd = process.cwd()
47+
process.chdir(testDir)
48+
49+
const tarball = await pack('file:.', {
50+
dryRun: false,
51+
packDestination: testDir,
52+
log: { level: 'silent' }, // so the test doesn't try to log
53+
})
54+
t.ok(tarball)
55+
const expectedTarball = path.join(testDir, 'my-cool-pkg-1.0.0.tgz')
56+
t.ok(fs.existsSync(expectedTarball), 'file was written')
57+
t.same(fs.readFileSync(expectedTarball), tarball, 'wrote same data that was returned')
58+
59+
const prepackTimestamp = (await fs.promises.stat(path.join(testDir, 'prepack'))).mtime
60+
const tarballTimestamp = (await fs.promises.stat(expectedTarball)).mtime
61+
const postpackTimestamp = (await fs.promises.stat(path.join(testDir, 'postpack'))).mtime
62+
63+
t.ok(prepackTimestamp < tarballTimestamp, 'prepack ran before tarball was written')
64+
t.ok(tarballTimestamp < postpackTimestamp, 'postpack ran after tarball was written')
65+
66+
t.teardown(async () => {
67+
process.chdir(cwd)
68+
})
69+
})
70+
3271
t.test('packs from local directory with silent loglevel', async t => {
3372
const testDir = t.testdir({
3473
'package.json': JSON.stringify({

0 commit comments

Comments
 (0)