-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* accordion, badge,buttontitlebar * feat(design-system): list,loader, popover, slider, pager, paging, panel, restitution * feat(design-system) : table, tabs, title * feat(design-system) : navigation * feat(design-system) : header * build(design-system): watch images gulp task * feat(design-system) : drawer,footer,footer-client * feat(design-system) : github * feat(design-system) : form text * feat(design-system) : form radioswitch, select, textarea and display code css * feat(design-system) : form checkbox, datepicker, file, pass, radio, card, filter * feat(design-system) : form filter, steps * feat(design-system) : pages layouts * feat(design-system) : style * feat(design-system) : update sassPath code display * feat(design-system): modal iframe
- Loading branch information
1 parent
620f278
commit dfa3165
Showing
398 changed files
with
10,746 additions
and
577 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,8 +1,11 @@ | ||
import del from 'del'; | ||
|
||
import config from './config'; | ||
const { pathDest } = config; | ||
|
||
const { pathDest, pathImg } = config; | ||
|
||
const clean = () => del([`${pathDest}`]); | ||
|
||
export default clean; | ||
|
||
export const cleanImages = () => del([`${pathDest}/${pathImg}`]); |
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,8 @@ | ||
import { src, dest } from 'gulp'; | ||
import config from './config'; | ||
|
||
const { pathDest, pathFontToolkit } = config; | ||
|
||
const copyIconfont = () => src(`${pathFontToolkit}/*.{svg,eot,ttf,woff}`).pipe(dest(`${pathDest}`)); | ||
|
||
export default copyIconfont; |
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,17 +1,31 @@ | ||
import { series } from 'gulp'; | ||
|
||
import clean from './clean'; | ||
import clean, { cleanImages } from './clean'; | ||
import jsDev, { jsProd } from './js'; | ||
import sassDev, { sassProd } from './sass'; | ||
import pugDev, { pugProd } from './pug'; | ||
import copyImages from './copy'; | ||
import copyAssets, { copyImages } from './copy'; | ||
import sprite from './sprite'; | ||
import serve from './serve'; | ||
import copyIconfont from './copyiconfont'; | ||
|
||
const build = series(clean, jsProd, sassProd, sprite, pugProd, copyImages); | ||
const dev = series(clean, jsDev, sassDev, pugDev, copyImages, serve); | ||
const reloadImages = series(cleanImages, copyImages); | ||
const build = series(clean, jsProd, sassProd, sprite, pugProd, copyAssets, copyIconfont); | ||
const dev = series(clean, jsDev, sassDev, pugDev, copyAssets, copyIconfont, serve); | ||
|
||
export default build; | ||
export { | ||
dev, build, clean, jsDev, jsProd, sassProd, sassDev, pugDev, pugProd, copyImages, sprite, | ||
dev, | ||
build, | ||
clean, | ||
jsDev, | ||
jsProd, | ||
sassProd, | ||
sassDev, | ||
pugDev, | ||
pugProd, | ||
copyAssets, | ||
sprite, | ||
copyIconfont, | ||
reloadImages, | ||
}; |
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
Oops, something went wrong.