git ssb

0+

cel-desktop / ssb-pkg



Tree: 67c0e15a98a66eb99db2251478505d6f3d37535c

Files: 67c0e15a98a66eb99db2251478505d6f3d37535c / test / test-46-input-package-json-dir-scope / main.js

423 bytesRaw
1#!/usr/bin/env node
2
3'use strict';
4
5const assert = require('assert');
6const utils = require('../utils.js');
7
8assert(!module.parent);
9assert(__dirname === process.cwd());
10
11const input = '.';
12
13const newcomers = [
14 'palookaville-linux',
15 'palookaville-macos',
16 'palookaville-win.exe'
17];
18
19const before = utils.filesBefore(newcomers);
20
21utils.pkg.sync([
22 input
23], { stdio: 'inherit' });
24
25utils.filesAfter(before, newcomers);
26

Built with git-ssb-web