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
+11-15
Original file line number
Diff line number
Diff line change
@@ -193,15 +193,21 @@ You can override Surge’s default 404 – Not Found page with your own, complet
193
193
194
194
## 💾 Core technologies.
195
195
196
-
At the core, **Fast** uses [Normalize.css](https://necolas.github.io/normalize.css/), [PostCss](https://postcss.org/), [Sass](https://sass-lang.com/), [Babel](https://babeljs.io/), [Parcel](https://parceljs.org/), and [Surge](https://surge.sh/).
196
+
At the core, **Fast** uses [Parcel](https://parceljs.org/), [Surge](https://surge.sh/), [Normalize.css](https://necolas.github.io/normalize.css/), [Sass](https://sass-lang.com/), and [Babel](https://babeljs.io/).
197
197
198
-
### Normalize.css.
198
+
### Parcel.
199
199
200
-
[Normalize.css](https://necolas.github.io/normalize.css/)makes browsers render all elements more consistently and in line with modern standards. It precisely targets only the styles that need normalizing.
200
+
**Fast** uses [Parcel](https://parceljs.org/) for Blazing fast bundle times. [Parcel](https://parceljs.org/) uses worker processes to enable multicore compilation and has a filesystem cache for fast rebuilds even after a restart. **Parcel** uses [Autoprefixer](https://github.com/postcss/autoprefixer#readme), a [PostCSS](https://postcss.org/)plugin to parse CSS and add vendor prefixes to CSS rules using values from Can I Use. It is recommended by Google and used in Twitter and Alibaba. This allows you to write your CSS rules without vendor prefixes.
201
201
202
-
### PostCSS.
202
+
**Note:** If your project needs to support older browsers, simply update the `browserslist` declaration in the [package.json](package.json) file to your desired configuration, and both [Babel](https://babeljs.io/) and [PostCSS's](https://postcss.org/)[Autoprefixer](https://github.com/postcss/autoprefixer#readme) will update to provide the necessary transformations through [Parcel](https://parceljs.org/).
203
+
204
+
### Surge.
205
+
206
+
**Fast** uses [Surge](https://surge.sh/) for fast and simple, static web publishing through a single command. [Surge](https://surge.sh/) allows you to deploy, update deploys (redeploy), and teardown your frontend projects in just a few seconds using default or custom domains for free.
207
+
208
+
### Normalize.css.
203
209
204
-
**Fast** uses [Autoprefixer](https://github.com/postcss/autoprefixer#readme), a [PostCSS](https://postcss.org/)plugin to parse CSS and add vendor prefixes to CSS rules using values from Can I Use. It is recommended by Google and used in Twitter and Alibaba. This allows you to write your CSS rules without vendor prefixes.
210
+
[Normalize.css](https://necolas.github.io/normalize.css/)makes browsers render all elements more consistently and in line with modern standards. It precisely targets only the styles that need normalizing.
205
211
206
212
### Sass.
207
213
@@ -211,16 +217,6 @@ At the core, **Fast** uses [Normalize.css](https://necolas.github.io/normalize.c
211
217
212
218
**Fast** uses [Babel](https://babeljs.io/) with [@babel/preset-env](https://babeljs.io/docs/en/babel-preset-env) through [Parcel's](https://parceljs.org/) default configuration, which is triggered based on the `browserslist` declaration in the [package.json](package.json) file. [@babel/preset-env](https://babeljs.io/docs/en/babel-preset-env) is a smart preset that allows you to use the latest JavaScript without needing to micromanage which syntax transforms (and optionally, browser polyfills) are needed by your target environment(s). This both makes your life easier and JavaScript bundles smaller!
213
219
214
-
**Note:** If your project needs to support older browsers, simply update the `browserslist` declaration in the [package.json](package.json) file to your desired configuration, and both [Babel](https://babeljs.io/) and [PostCSS's](https://postcss.org/)[Autoprefixer](https://github.com/postcss/autoprefixer#readme) will update to provide the necessary transformations.
215
-
216
-
### Parcel.
217
-
218
-
**Fast** uses [Parcel](https://parceljs.org/) for Blazing fast bundle times. [Parcel](https://parceljs.org/) uses worker processes to enable multicore compilation and has a filesystem cache for fast rebuilds even after a restart.
219
-
220
-
### Surge.
221
-
222
-
**Fast** uses [Surge](https://surge.sh/) for fast and simple, static web publishing through a single command. [Surge](https://surge.sh/) allows you to deploy, update deploys (redeploy), and teardown your frontend projects in just a few seconds using default or custom domains for free.
223
-
224
220
## 🚨 Found issues?
225
221
226
222
[Please create a ticket.](https://github.com/reblim/fast/issues)
0 commit comments