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
+17-7Lines changed: 17 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -64,7 +64,11 @@ djibe-material/
64
64
│ ├── material.css
65
65
│ ├── material.css.map
66
66
│ ├── material.min.css
67
-
│ └── material.min.css.map
67
+
│ ├── material.min.css.map
68
+
| ├── material-plugins.css
69
+
│ ├── material-plugins.css.map
70
+
│ ├── material-plugins.min.css
71
+
│ └── material-plugins.min.css.map
68
72
└── js/
69
73
├── material.js
70
74
├── material.js.map
@@ -74,6 +78,8 @@ djibe-material/
74
78
75
79
We provide compiled CSS and JavaScript (`material.*`), as well as compiled and minified CSS and JavaScript (`material.min.*`). CSS and JavaScript source maps (`material.*.map`) are also available for use with certain browsers' developer tools.
76
80
81
+
`material-plugins.css` is an addon containing suitable style for the Plugins (see doc's Plugin section).
82
+
77
83
The Material 2 source code download includes the precompiled CSS and JavaScript, along with documentation and source assets. More specifically, it includes the following and more:
78
84
79
85
```
@@ -85,9 +91,13 @@ djibe-material/
85
91
│ ├── material.css
86
92
│ ├── material.css.map
87
93
│ ├── material.min.css
88
-
│ └── material.min.css.map
94
+
│ ├── material.min.css.
95
+
│ ├── material-plugins.css
96
+
│ ├── material-plugins.css.map
97
+
│ ├── material-plugins.min.css
98
+
│ └── material-plugins.min.css.map
89
99
├── docs/
90
-
│ └── 4.5/
100
+
│ └── 4.6/
91
101
└── js/
92
102
├── material.js
93
103
├── material.js.map
@@ -97,11 +107,11 @@ djibe-material/
97
107
98
108
## Documentation
99
109
100
-
Material's 2 documentation that is included in this repo located in the root directory, is built with [Jekyll](https://jekyllrb.com/) and publicly hosted on GitHub Pages at <http://djibe.github.io/material/>. The docs can also be hosted locally.
110
+
Material's 2 documentation that is included in this repo located in the root directory, is built with [Jekyll](https://jekyllrb.com/) and publicly hosted on GitHub Pages at <https://djibe.github.io/material/>. The docs can also be hosted locally.
101
111
102
112
### Running Documentation Locally
103
113
104
-
1. Run through the [tooling setup](https://djibe.github.io/material/docs/4.5/getting-started/tooling/#getting-started) to install Jekyll and other Ruby dependencies with `bundle install`.
114
+
1. Run through the [tooling setup](https://djibe.github.io/material/docs/4.6/getting-started/tooling/#getting-started) to install Jekyll and other Ruby dependencies with `bundle install`.
105
115
2. Run `npm install` to install Node.js dependencies.
106
116
3. Run `npm run dist` and `npm run docs` to rebuild distributed CSS and JavaScript files, as well as docs assets.
107
117
4. If you had end-of-line errors when running the commands indicated in step #3 then, please follow [this step](#end-of-line-fix) before proceeding, or else proceed to step #5.
@@ -125,11 +135,11 @@ In order to fix this problem, you have to save all modified files that is not ye
125
135
126
136
#### Command Notes
127
137
128
-
- At command #1, we have to configure github to stop interpretting our files in the repo to convert the end-of-line to **CRLF**.
138
+
- At command #1, we have to configure github to stop interpreting our files in the repo to convert the end-of-line to **CRLF**.
129
139
- At command #2, since we configured our github to stop converting those into **CRLF** where it is expected to be **LF**, we have to remove all the cache files and remove them in recursive way in the same path where your command line directory is at. (For instance, your command line target path is this repository.)
130
140
- And finally at command #3, we have to reset the state of your saved local repo by issuing `--hard` command. Where, all modified files that is not included in the latest commit of repo will be removed.
131
141
132
-
Now try issuing commands from the recent steps earlier and *****that should work fine*****.
142
+
Now try issuing commands from the recent steps earlier and ***that should work fine***.
0 commit comments