@@ -68,14 +68,15 @@ app/ --> all of the source files for the application
6868 version-directive_test.js --> version directive tests
6969 interpolate-filter.js --> custom interpolation filter
7070 interpolate-filter_test.js --> interpolate filter tests
71- view1/ --> the view1 view template and logic
72- view1.html --> the partial template
73- view1.js --> the controller logic
74- view1_test.js --> tests of the controller
75- view2/ --> the view2 view template and logic
76- view2.html --> the partial template
77- view2.js --> the controller logic
78- view2_test.js --> tests of the controller
71+ views/ --> all views go here
72+ view1/ --> the view1 view template and logic
73+ view1.html --> the partial template
74+ view1.js --> the controller logic
75+ view1_test.js --> tests of the controller
76+ view2/ --> the view2 view template and logic
77+ view2.html --> the partial template
78+ view2.js --> the controller logic
79+ view2_test.js --> tests of the controller
7980 app.js --> main application module
8081 index.html --> app layout file (the main html template file of the app)
8182 index-async.html --> just like index.html, but loads js files asynchronously
@@ -182,7 +183,13 @@ and gulp will be installed globally and you can run it from the command line.
182183
183184In ` gulpfile.js ` , change the parameter moduleName if the main module has another name.
184185
185- Then just run ` gulp ` to prepare for production. The result is in the ` dist ` directory.
186+ Then just run ` gulp ` to prepare for production. The result is in the ` dist/ ` directory.
187+
188+ To test the production code, run:
189+
190+ ```
191+ npm run protractor-dist
192+ ```
186193
187194
188195## Contact
0 commit comments