mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-12-19 23:10:21 +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');
|