git ssb

0+

cel-desktop / ssb-pkg



Tree: d456a6cc8589489e558e6164750474ed2cfc961e

Files: d456a6cc8589489e558e6164750474ed2cfc961e / test / test-46-input-output-js-exe / main.js

413 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';
12const newcomers = [ 'test-output.exe' ];
13const before = utils.filesBefore(newcomers);
14
15utils.pkg.sync([
16 '--output', 'test-output.exe', input
17], { stdio: 'inherit' });
18
19utils.filesAfter(before, newcomers);
20

Built with git-ssb-web