git ssb

0+

cel-desktop / ssb-pkg



Tree: ca90b5ca0579ebdcc0635288bce4978e3fb200f5

Files: ca90b5ca0579ebdcc0635288bce4978e3fb200f5 / test / test-46-input-targets-many-3 / main.js

450 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 = './test-x-index.js';
12
13const newcomers = [
14 'test-x-index-linux',
15 'test-x-index-macos',
16 'test-x-index-win.exe'
17];
18
19const before = utils.filesBefore(newcomers);
20
21utils.pkg.sync([
22 '--target', 'linux,macos,win',
23 input
24]);
25
26utils.filesAfter(before, newcomers);
27

Built with git-ssb-web