You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note: If you are using Scala Templates support in play-yeoman 0.7.0, ensure that "htmlmin" task is not called during the "build" since it does not understand Scala templates. This can be done by updating the build task in Gruntfile.js,
158
+
Note: If you are using Scala Templates support in play-yeoman 0.7.1, ensure that "htmlmin" task is not called during the "build" since it does not understand Scala templates. This can be done by updating the build task in Gruntfile.js,
175
159
176
160
```
177
161
grunt.registerTask('build', [
@@ -226,7 +210,7 @@ Using 0.6.4
226
210
227
211
```
228
212
229
-
Using 0.7.0
213
+
Using 0.7.1
230
214
231
215
```
232
216
val appSettings = Seq(version := appVersion, libraryDependencies ++= appDependencies) ++
@@ -244,7 +228,7 @@ Using 0.7.0
244
228
245
229
* Look at the yo-demo project for details!
246
230
247
-
Note: In 0.7.0, play-yeoman supports compilation of views from the yeoman directory but cannot recompile them when they are modified with the server running. You will need to stop the server and start it again.
231
+
Note: In 0.7.1, play-yeoman supports compilation of views from the yeoman directory but cannot recompile them when they are modified with the server running. You will need to stop the server and start it again.
248
232
249
233
* If you use scala template support, you need to run grunt prior to compile else the template code will not be generated. This is not required if you execute run or stage directly since they have a dependency on grunt.
250
234
@@ -264,6 +248,11 @@ For this purpose play-yeoman provides 2 settings that you can use in you play pr
264
248
2) yeoman.devDirs - This is a List of String that takes a list of locations where play-yeoman should look for files in development mode i.e. when run using sbt run.
265
249
266
250
251
+
Note: Starting from 0.7.1, it is possible to disable force option on execution of grunt tasks. This can be done by adding the following to the application build settings,
0 commit comments