Open to view all of my Challenges
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
const path = require('path') | |
const postcssPresetEnv = require('postcss-preset-env') | |
const HtmlWebpackPlugin = require('html-webpack-plugin') | |
const cssnano = require('cssnano') | |
const postcssImport = require('postcss-import') | |
module.exports = { | |
entry: './src/index.js', | |
output: { | |
path: path.join(__dirname, '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
// @stylint off | |
vendor(prop, args) { | |
-webkit-{prop}: args; | |
-moz-{prop}: args; | |
-o-{prop}: args; | |
{prop}: args; | |
} | |
animation() { | |
vendor('animation', arguments); |
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
{ | |
"name": "lucasjs.github.io", | |
"version": "1.0.0", | |
"description": "My Website", | |
"main": "index.js", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1" | |
}, | |
"repository": { | |
"type": "git", |
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
const gulp = require('gulp'); | |
const stylint = require('gulp-stylint'); | |
const stylus = require('gulp-stylus'); | |
const imagemin = require('gulp-imagemin'); | |
const eslint = require('gulp-eslint'); | |
const babel = require('gulp-babel'); | |
const connect = require('gulp-connect'); | |
gulp.task('html', () => | |
gulp.src('./src/views/*.html') |