-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade styles config, remove unnesessary packages (#137)
- Loading branch information
Showing
10 changed files
with
2,294 additions
and
2,464 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
### Project's token from Hawk | ||
# Read more https://hawk.so/docs | ||
HAWK_TOKEN = "" | ||
HAWK_TOKEN= | ||
|
||
### Cache server connection params | ||
# If you ARE NOT using docker: CACHE_HOST = localhost | ||
CACHE_HOST = memcached | ||
CACHE_PORT = 11211 | ||
DISABLE_CACHE = False | ||
CACHE_HOST=memcached | ||
CACHE_PORT=11211 | ||
DISABLE_CACHE=True |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
plugins: | ||
# Consumes files by @import rule | ||
# https://github.com/postcss/postcss-import | ||
postcss-import: {} | ||
|
||
# Convert modern CSS into something most browsers can understand | ||
# https://github.com/csstools/postcss-preset-env | ||
postcss-preset-env: | ||
# Polyfill CSS features | ||
# https://github.com/csstools/postcss-preset-env#stage | ||
# | ||
# List of features with levels: https://cssdb.org/ | ||
stage: 0 | ||
|
||
# Define polyfills based on browsers you are supporting | ||
# https://github.com/csstools/postcss-preset-env#browsers | ||
browsers: | ||
- 'last 2 versions' | ||
- '> 1%' | ||
|
||
# Instruct all plugins to omit pre-polyfilled CSS | ||
# https://github.com/csstools/postcss-preset-env#preserve | ||
preserve: false | ||
|
||
# Nested rules unwrapper | ||
# https://github.com/postcss/postcss-nested | ||
# | ||
# As you know 'postcss-preset-env' plugin has an ability to process | ||
# 'postcss-nesting' feature but it does not work with BEM | ||
# Report: https://github.com/csstools/postcss-preset-env/issues/40 | ||
postcss-nested: {} | ||
|
||
# Compression tool | ||
# https://github.com/cssnano/cssnano | ||
cssnano: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.