iron-meteor/iron-cli

Error "run" prevented startup

Opened this issue · 6 comments

While processing files with static-html (for target web.browser):
client/templates/layouts/master_layout/master_layout.html:1: Expected or tag
client/templates/shared/loading/loading.html:1: Expected or tag
client/templates/shared/not_found/not_found.html:1: Expected or tag
client/templates/home/home.html:1: Expected or tag
client/templates/list/list.html:1: Expected or tag

raym commented

Same here.
Brand new app created with iron create <app-name> returns the following at iron run:

=> Errors prevented startup:                  
   
   While processing files with static-html (for target web.browser):
   client/templates/layouts/master_layout/master_layout.html:1: Expected <head> or <body> tag
   client/templates/shared/loading/loading.html:1: Expected <head> or <body> tag
   client/templates/shared/not_found/not_found.html:1: Expected <head> or <body> tag
   client/templates/home/home.html:1: Expected <head> or <body> tag
   
=> Your application has errors. Waiting for file change.

Each of those files has a <template> tag, and these errors will go away if I wrap the contents of each file with a <body> tag, but then of course the app can't find the template MasterLayout

$ iron version
1.8.1
$ meteor --version
Meteor 1.5.1

Same issue while building a test app.

meteor run --settings /Users/davidkay/PROJECTS/miqms-meteor/config/development/settings.json
[[[[[ ~/PROJECTS/miqms-meteor/app ]]]]]
=> Started proxy.
=> Errors prevented startup:

While processing files with static-html (for target web.browser):
client/templates/cars/create_car/create_car.html:1: Expected <head> or <body> tag
client/templates/layouts/master_layout/master_layout.html:1: Expected <head> or <body> tag
client/templates/shared/loading/loading.html:1: Expected <head> or <body> tag
client/templates/shared/not_found/not_found.html:1: Expected <head> or <body> tag
client/templates/home/home.html:1: Expected <head> or <body> tag

=> Your application has errors. Waiting for file change.
=> Started MongoDB.

Sierra 10.12.6
Version info:

$ iron version
1.8.1
$ meteor --version
Meteor 1.5.1
abate commented

it seems you need to remove static-html and install blaze-html-templates

This is how I solved it

meteor remove static-html
meteor add blaze-html-templates

Errors prevented startup:

While processing files with static-html (for target web.browser):
client/Html/sidebar.html:1: Expected or tag

Please help me in resolving this error , I am getting this while defining my template

Errors prevented startup:

While processing files with static-html (for target web.browser):
client/main.html:16: Expected or tag

Your application has errors. Waiting for file change.