-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
61 changed files
with
4,204 additions
and
3,634 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
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 +1 @@ | ||
>=10.13.0 <11.0.0 | ||
>=12.13.0 <13.0.0 |
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,5 +1,5 @@ | ||
language: node_js | ||
node_js: 10 | ||
node_js: 12 | ||
cache: | ||
yarn: true | ||
directories: | ||
|
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,29 @@ | ||
import { series } from 'gulp' | ||
|
||
import pipelineHelper from './helpers/pipeline' | ||
|
||
import { babel as babelTask } from './tasks/babel' | ||
import { clean as cleanTask } from './tasks/clean' | ||
import { csslint as cssLintTask } from './tasks/css-lint' | ||
import { dev as devTask } from './tasks/dev' | ||
import { emailFix as emailFixTask } from './tasks/email-fix' | ||
import { inheritance as inheritanceTask } from './tasks/inheritance' | ||
import { sasslint as sassLintTask } from './tasks/sass-lint' | ||
import { setup as setupTask } from './tasks/setup' | ||
import { styles as stylesTask } from './tasks/styles' | ||
import { svg as svgTask } from './tasks/svg' | ||
import { watch as watchTask } from './tasks/watch' | ||
|
||
export const babel = series(inheritanceTask, babelTask) | ||
export const clean = cleanTask | ||
export const csslint = cssLintTask | ||
export const dev = series(pipelineHelper, inheritanceTask, babelTask, stylesTask, devTask, watchTask) | ||
export const emailfix = emailFixTask | ||
export const inheritance = inheritanceTask | ||
export const sasslint = sassLintTask | ||
export const setup = setupTask | ||
export const styles = series(inheritanceTask, stylesTask) | ||
export const svg = series(inheritanceTask, svgTask) | ||
export const watch = watchTask | ||
|
||
export { default as default } from './tasks/default' |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.