mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 23:13:02 +01:00
Merge pull request #23 from mikegreiling/support-node-6-lts
Add support for Node 6 LTS
This commit is contained in:
commit
1e3817ae55
3 changed files with 3 additions and 11 deletions
|
|
@ -4,7 +4,7 @@
|
|||
"description": "A webpack plugin for the Monaco Editor",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
"test": "node ./node_modules/webpack/bin/webpack.js --config test/webpack.config.js"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
|
|||
|
|
@ -1,9 +0,0 @@
|
|||
{
|
||||
"name": "monaco-webpack-test",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"test": "node ../node_modules/webpack/bin/webpack.js --config webpack.config.js"
|
||||
}
|
||||
}
|
||||
|
|
@ -4,6 +4,7 @@ const path = require('path');
|
|||
module.exports = {
|
||||
mode: 'development',
|
||||
entry: './index.js',
|
||||
context: __dirname,
|
||||
output: {
|
||||
path: path.resolve(__dirname, 'dist'),
|
||||
filename: 'app.js'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue