A webpack loader for Weex.
npm install weex-loader babel-loader --save
.we
file..js/.css/.html
) via src
attribute..we
file.weex-components
under v0.1, please update it to v0.2.@weex-module/xxxx
in .js
file. see issue.we
file.make a webpack config
module.exports = {
entry: './main.we?entry',
output: {
path: './dist',
filename: 'main.js'
},
module: {
loaders: [
{
test: /\.we(\?[^?]+)?$/,
loader: 'weex'
}
]
}
};
specify src
attribute
<template src="https://github.com/apache/incubator-weex-loader/raw/master/main.html"></template>
<style src="https://github.com/apache/incubator-weex-loader/raw/master/main.css"></style>
<script src="https://github.com/apache/incubator-weex-loader/raw/master/main.js"></script>
append a weex config in webpack config
weex: {
lang: {
jade: ['jade-html'] // a jade langauge will chain "jade-html-loader"
}
}
main.we
<template lang="jade">
div
text Hello Weex
</template>
.we
file as component elementpath/to/component.we
in script
like require('./foo.we')
or write inline element like <element name="foo" src="https://github.com/apache/incubator-weex-loader/raw/master/foo.we"></element>
.template
like <foo></foo>
.<element name="foo" src="https://github.com/apache/incubator-weex-loader/raw/master/foo.we"></element>
<template>
<div>
<foo></foo>
<bar></bar>
</div>
</template>
<script>
require('./bar.we')
</script>
require('./foo.we?name="fooo"')
. Or specify a name attribute in element, like <element name="fooo" src="https://github.com/apache/incubator-weex-loader/raw/master/foo.we" ></element>
template
like <fooo></fooo>
.<element name="fooo" src="https://github.com/apache/incubator-weex-loader/raw/master/foo.we"></element>
<template>
<div>
<fooo></fooo>
<baar></baar>
</div>
</template>
<script>
require('./bar.we?name=baar')
</script>
npm run test
will run mocha testing.
And you can check the specs in test/spec
folder.
src
attrBug
Source Map Offset. Encoding to this problem, please use devtool:"eval-source-map"
instead of devtool:"source-map"
.Bug
Can't set debugger breakpoint. I still don't know the reason, but you can debug with debugger
keyword.