mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-12 19:25:10 +00:00
8 lines
144 B
JavaScript
Executable File
8 lines
144 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
const cmd = process.argv[2];
|
|
|
|
if (cmd === 'build') {
|
|
process.env.NODE_ENV = 'production';
|
|
require('../lib/build.js')();
|
|
} |