iron-meteor / iron-cli

A scaffolding command line tool for Meteor applications.
640 stars 82 forks source link

Error "run" prevented startup #256

Open a-cinchetti opened 7 years ago

a-cinchetti commented 7 years ago

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 7 years ago

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
daresTheDevil commented 7 years ago

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 6 years ago

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

kingzuru commented 5 years ago

This is how I solved it

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

upadhyaya14 commented 2 years ago

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

gilbertino commented 1 year ago

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.