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
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,9 +37,9 @@ You will now be prompted to give your new AngularJS app a name, which will be da
37
37
38
38
### CSS Preprocessor
39
39
40
-
You can choose between `LESS`and `Stylus` to use as the CSS Preprocessor for your project.
40
+
You can choose between `LESS`, `Stylus`, and `Sass` to use as the CSS Preprocessor for your project.
41
41
42
-
*Note* All `_*.styl`or `_*.less` files will be considered "partials" and must be imported in another stylesheet file (without a leading "_") to be compiled.
42
+
*Note* All `_*.styl`, `_*.less`, or `_*.scss` files will be considered "partials" and must be imported in another stylesheet file (without a leading "_") to be compiled.
43
43
44
44
### Project structure
45
45
@@ -62,18 +62,18 @@ my-angular-app/
62
62
└── src
63
63
└── app
64
64
├── app.js # Main app module and configuration
65
-
├── app.styl or app.less # Main app stylesheet
65
+
├── app.styl/less/scss # Main app stylesheet
66
66
├── index.html # The index.html / app layout template
67
67
├── assets # A folder meant for images and such...
68
68
│ └── .gitkeep
69
69
├── styles
70
-
│ └── _base.styl or _base.less # A stylesheet partial with base styles
70
+
│ └── _base.styl/less/scss # A stylesheet partial with base styles
71
71
└── todo
72
72
├── todo-controller.js # The todo controller
73
73
├── todo-controller_test.js # Karma test for the todo controller
74
74
├── todo.html # The todo list template
75
75
├── todo.js # The todo module
76
-
└── todo.styl or todo.less # Todo module specific styles
76
+
└── todo.styl/less/scss # Todo module specific styles
0 commit comments