mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-23 22:25:12 +00:00
23 lines
498 B
JavaScript
23 lines
498 B
JavaScript
/*!
|
|
* Nuxt.js
|
|
* (c) 2016-2017 Chopin Brothers
|
|
* Core maintainer: Pooya (@pi0)
|
|
* Released under the MIT License.
|
|
*/
|
|
|
|
// Node Source Map Support
|
|
// https://github.com/evanw/node-source-map-support
|
|
require('source-map-support').install();
|
|
|
|
// Fix babel flag
|
|
/* istanbul ignore else */
|
|
process.noDeprecation = true
|
|
|
|
// Require Core
|
|
const Core = require('./dist/core.js')
|
|
Object.assign(exports, Core)
|
|
|
|
// Require Builder
|
|
const Builder = require('./dist/builder.js')
|
|
Object.assign(exports, Builder)
|