Andrew Van Slaars は、私が Riot.js + Webpack を使い始めるのに使用した素晴らしいビデオを作成しました。
https://www.youtube.com/watch?v=UgdZbT-KPpY
また、Riot.js + webpack を含む「スターター キット」の git リポジトリも提供しています: https://github.com/avanslaars/riot-webpack-base
どちらも非常に役立ち、良い出発点です。
package.json には何が必要かが示されています。注意: riotjs-loader ではなく tag-loader を使用してください。タグローダーが機能することがわかったので、riotjs-loader は試していません。
{
"name": "riot-webpack-setup",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"riot": "^2.3.11"
},
"devDependencies": {
"babel-core": "^6.3.17",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"tag-loader": "^0.3.0",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
}
}
webpack.config ファイルから始めるのは非常に簡単です。
var path = require('path')
module.exports = {
entry: './src/index.js',
output: {
path: __dirname,
filename: 'bundle.js'
},
module:{
loaders:[
{
test: /\.js$/,
loader:'babel-loader',
exclude: /node_modules/,
query: {
presets: ['es2015']
}
},
{
test: /\.tag$/,
loader: 'tag',
exclude: /node_modules/
}
]
}
}