git ssb

0+

cel-desktop / ssb-pkg



Tree: efcf9fd06b02fa9bcd28681b4c777224e19702bb

Files: efcf9fd06b02fa9bcd28681b4c777224e19702bb / test / test-46-input-target-js / main.js

487 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 target = process.argv[2] || 'latest';
12const input = './test-x-index.js';
13const exe = (process.platform === 'win32' ? '.exe' : '');
14const newcomers = [ 'test-x-index' + exe ];
15const before = utils.filesBefore(newcomers);
16
17utils.pkg.sync([
18 '--target', target,
19 input
20]);
21
22utils.filesAfter(before, newcomers);
23

Built with git-ssb-web