0

私は最初に新しいプロジェクトを開始します

brunch new https://github.com/wordofchristian/brunch-with-hampsters

次に、時計とサーバーを起動しようとします

$brunch w -s

このエラーが発生します

node_modules/emblem-brunch/lib/index.js:27
        this.window.run(fs.readFileSync(paths.jquery, 'utf8'));

TypeError: Object object has no method 'run'
at EmblemCompiler.module.exports.EmblemCompiler.setup (node_modules/emblem-brunch/lib/index.js:27:21)
at new EmblemCompiler (node_modules/emblem-brunch/lib/index.js:43:14)

このエラーを修正する方法がわかりませんか?

4

1 に答える 1

0

私は先輩プログラマーと一緒にそれを理解しました。

私のubuntuにbuild-essentialパッケージがインストールされていなかったことがわかりました。g++ コマンドを探していました。

同様に、npm install を行うときも sudo が必要です。g++ の修正と sudo npm のインストール後、起動できました

brunch w -s
于 2013-08-20T20:55:08.337 に答える