2016-01-02 26 views
5

vererek ben browserify ile çevik kuvvet özel etiketler kullanmaya çalışıyorum.Browserify Riot Özel Etiketler Tipi Hatası

TypeError: Cannot read property 'render' of null while parsing file: /Users/michaelmostachetti/Google_Drive/dev/web/mike_mostachetti_site/app/views/blog.tag 
at _html.jade (/Users/michaelmostachetti/Google_Drive/dev/web/mike_mostachetti_site/node_modules/riot/node_modules/riot-compiler/dist/compiler.js:58:26) 
at compileTemplate (/Users/michaelmostachetti/Google_Drive/dev/web/mike_mostachetti_site/node_modules/riot/node_modules/riot-compiler/dist/compiler.js:692:10) 
at Object.compile (/Users/michaelmostachetti/Google_Drive/dev/web/mike_mostachetti_site/node_modules/riot/node_modules/riot-compiler/dist/compiler.js:717:11) 
at Stream.<anonymous> (/Users/michaelmostachetti/Google_Drive/dev/web/mike_mostachetti_site/node_modules/riotify/index.js:16:58) 
at _end (/Users/michaelmostachetti/Google_Drive/dev/web/mike_mostachetti_site/node_modules/riotify/node_modules/through/index.js:65:9) 
at Stream.stream.end (/Users/michaelmostachetti/Google_Drive/dev/web/mike_mostachetti_site/node_modules/riotify/node_modules/through/index.js:74:5) 
at DestroyableTransform.onend (/Users/michaelmostachetti/npm-global/lib/node_modules/browserify/node_modules/readable-stream/lib/_stream_readable.js:545:10) 
at DestroyableTransform.g (events.js:260:16) 
at emitNone (events.js:72:20) 
at DestroyableTransform.emit (events.js:166:7) 

İşte İşte benim index.js benim package.json

"browserify": { 
    "transform": [ 
     [ 
     "riotify", 
     { 
       "template": "jade" 
     } 
     ] 
    ] 
} 

bu.

var riot  = require('riot'), 
    blogView = require('./views/blog.tag'); 

riot.mount(blogView); 

Sadece hata ve neyin yanlış gittiğiyle karıştırıldım. Ben herhangi bir sorun olmadan html içine yeşim derlemek olabilir. İşte docs içinde örnek. https://github.com/jhthorsen/riotify#usage

cevap

2

bağımlılık jade yüklü olmadığı için bu olabilir. Sadece bu hatanın yığın izlemesini kontrol ettik ve bu hat işaret:

return _req('jade').render(html, extend({ 

Yani jade eklemeyi deneyin ve sonra yeniden çalıştırarak. Aslında

+2

, sen öncesi süreç html (ı did not) ihtiyaç sürece 'template' seçeneğin kurtulabilirsiniz. –