mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-12-17 14:00:29 +01:00
8 lines
159 B
JavaScript
8 lines
159 B
JavaScript
'use strict';
|
|
|
|
const fs = require('fs-extra');
|
|
|
|
fs.copy('config.json', 'build');
|
|
fs.copy('src/views', 'build/src/views');
|
|
fs.copy('install', 'build/install');
|