如何要求ace-builds / ace'使用Webpack和noParse选项

时间:2015-04-16 18:58:06

标签: javascript ace-editor webpack

我目前正在尝试使用webpack来要求ace-builds(从凉亭安装)。由于它是一个巨大的lib,我将整个文件夹添加到noParse选项。我在终端上使用-d选项运行webpack。

问题是:当我的代码试图要求它时,它是一个空对象。此外,它没有被浏览器加载。以下是我正在做的一些信息:

我的档案:

// custom_editor.js
// ace-builds are aliased by ace keyword
var Ace = require('ace/ace');  // This is an empty Object when I'm debugging with breakpoints

Object {}

配置文件:

// webpack.config.js
var webpack = require('webpack');
var path = require('path');

module.exports = {
  entry: {
    form: path.join(__dirname, 'static/main_files/form.js'),
    vendor: [
      'jquery',
      'react',
      'underscore',
      'query-string',
      'react-dnd',
      'react-select-box'
    ]
  },
  output: {
    path: path.join(__dirname, 'static/bundle'),
    filename: '[name].bundle.js'
  },
  module: {
    loaders: [{
      test: /\.jsx$/,
      loader: 'jsx-loader?insertPragma=React.DOM'
    }],
    noParse: [
      /ace-builds.*/
    ]
  },
  resolve: {
    extensions: ['', '.js', '.jsx'],
    root: [
      __dirname,
      path.join(__dirname, 'static'),
      path.join(__dirname, 'node_modules')
    ],
    alias: {
      jQueryMask: 'node_modules/jquery-mask-plugin/dist/jquery.mask',
      twbsDropdown: 'node_modules/bootstrap-sass/assets/javascripts/bootstrap/dropdown',
      'twbs-datetimepicker': 'node_modules/eonasdan-bootstrap-datetimepicker/src/js/bootstrap-datetimepicker',
      ace: 'bower_components/ace-builds/src',
      'select-box': 'node_modules/react-select-box/lib/select-box',
      queryString: 'node_modules/query-string/query-string',
      moment: 'node_modules/moment/moment'
    }
  },
  plugins: [
    new webpack.ResolverPlugin(
      new webpack.ResolverPlugin.DirectoryDescriptionFilePlugin("bower.json", ["main"])
    ),
    new webpack.ProvidePlugin({
        $: 'jquery',
        jQuery: 'jquery'
    })
  ]
};

未在Chrome的网络面板上加载

Network

它在Chrome的Sources面板上显示(不知道为什么,因为没有加载ace.map文件)

Sources

这里真的没有我错误的想法。有没有可以克隆和测试的好例子? (它也可以是另一个lib。)

1 个答案:

答案 0 :(得分:23)

使用brace。它是aceify编辑器的浏览器兼容版本,也适用于webpack。版本0.5.1使用ace 1.1.9。

https://github.com/thlorenz/brace