git ssb

0+

cel-desktop / ssb-pkg



Tree: 67c0e15a98a66eb99db2251478505d6f3d37535c

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

410 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 = './package.json';
12
13const newcomers = [
14 'palookaville-linux',
15 'palookaville-macos'
16];
17
18const before = utils.filesBefore(newcomers);
19
20utils.pkg.sync([
21 input
22], { stdio: 'inherit' });
23
24utils.filesAfter(before, newcomers);
25

Built with git-ssb-web