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
.example { | |
/* color-adjust */ | |
color-adjust: economy; | |
color-adjust: exact; | |
/* animation, animation-(delay|direction|duration|fill-mode|iteration-count|name|play-state|timing-function) */ | |
animation: 3s ease-in 1s 2 reverse both paused slidein; | |
animation-delay: 2.1s, 480ms; | |
animation-duration: 2.1s, 480ms; | |
animation-name: lorem; |
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
// ----------------------------------------------------------------------------- | |
// Deps | |
// ----------------------------------------------------------------------------- | |
const fromCWD = require('from-cwd'); | |
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); | |
const PnpWebpackPlugin = require('pnp-webpack-plugin'); | |
const { PHASE_DEVELOPMENT_SERVER } = require('next/constants'); | |
// ----------------------------------------------------------------------------- |
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
'use strict'; | |
/** | |
* @module | |
*/ | |
// ---------------------------------------- | |
// Imports | |
// ---------------------------------------- |
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
'use strict'; | |
/** | |
* @module | |
* @author Oleg Dutchenko <dutchenko.o.dev@gmail.com> | |
* @version 1.0.0 | |
*/ | |
// ---------------------------------------- | |
// Imports |