-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* LDBR 2.18: Добавить базовую конфигурацию webpack * LDBR-2.18: Добавить сборку через webpack, babel * LDBR-2.18: Внести исправления в webpack.config.js и server.js * LDBR-2.18: Привести стили в рабочий вид * LDBR-2.18:Добавит CopyPlugin, изменить дефайны * LDBR-2.18: Добавить Dev Server и exclude в лоадеры * LDBR-2.18: Добавить contenthash * LDBR-2.18: Добавить Cache-control middleware в express * LDBR-2.18: Изменить порядок использования contenthash * LDBR-2.18: Добавить сборку шаблонов webpack'ом, исправить стили, define'ы * LDBR-2.18: Обновить описание команд npm * LDBR-2.18: Внести правки после ревью PR * LDBR-2.18: Добавить очистку /dist * LDBR-2.18: Перенести scss в src, заменить exclude на include
- Loading branch information
Showing
37 changed files
with
18,744 additions
and
369 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 |
---|---|---|
|
@@ -10,3 +10,6 @@ src/tmpl.js | |
|
||
#ide | ||
.idea | ||
|
||
#artifacts | ||
dist/* |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"presets": ["@babel/preset-env"], | ||
"plugins": [ | ||
["@babel/transform-runtime"] | ||
] | ||
} |
Large diffs are not rendered by default.
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
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
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
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
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
File renamed without changes.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
@import 'Font-awesome.min'; | ||
@import 'Fonts'; | ||
@import 'Popups'; | ||
@import 'Refuse'; | ||
@import 'Reset'; | ||
@import 'Constants'; | ||
|
||
* { | ||
box-sizing: border-box; | ||
} | ||
|
||
body { | ||
margin: 0; | ||
background: linear-gradient(45deg, $primary-bg-color, $secondary-bg-color); | ||
height: 100%; | ||
font-family: 'Montserrat', sans-serif; | ||
} |
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,17 @@ | ||
$primary-bg-color: rgb(207, 241, 249); | ||
$secondary-bg-color: rgb(231, 246, 254); | ||
$tertiary-bg-color: rgb(170, 201, 208); | ||
|
||
$main-theme-color: rgb(37, 128, 133); | ||
$main-theme-color__focus: rgb(77, 156, 245); | ||
|
||
$transparent-bg-color: rgba(255, 255, 255, 0.3); | ||
$default-box-shadow-color: rgba(0,0,0,0.2); | ||
|
||
$error-color: rgb(216, 0, 12); | ||
$error-bg-color: rgb(255, 210, 210); | ||
|
||
$light-white-color: rgb(241, 241, 241); | ||
$input-color: rgb(210, 210, 210); | ||
|
||
$input__input-color: rgb(144, 144, 144); |
Oops, something went wrong.