###Sketch trial non stop
Open hosts files:
$ open /private/etc/hosts
Edit the file adding:
127.0.0.1 backend.bohemiancoding.com
127.0.0.1 bohemiancoding.sketch.analytics.s3-website-us-east-1.amazonaws.com
{ | |
"name": "tvify", | |
"description": "Una web app para seleccionar tus shows favoritos", | |
"version": "0.1.0", | |
"dependencies": { | |
"jquery": "^2.1.4", | |
"page": "^1.6.4", | |
"qs": "^6.0.0", | |
"serve": "^1.4.0" | |
}, |
'use strict'; | |
var gulp = require('gulp'); | |
var sass = require('gulp-sass'); | |
gulp.task('sass', function () { | |
return gulp.src('./public/sass/index.scss') | |
.pipe(sass().on('error', sass.logError)) | |
.pipe(gulp.dest('./public/css')); | |
}); |
module.exports ={ | |
resolve: { | |
extensions: ['', '.js','.jsx'] | |
}, | |
context: __dirname, | |
entry: { | |
app: ['./src/app.jsx'] | |
}, | |
output: { | |
path: './build', |
// File: Gulpfile.js | |
'use strict'; | |
var gulp = require('gulp'), | |
webserver = require('gulp-webserver'), | |
connect = require('gulp-connect'), | |
stylus = require('gulp-stylus'), | |
nib = require('nib'), | |
jshint = require('gulp-jshint'), | |
stylish = require('jshint-stylish'), |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Css Grid example</title> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> |
###Sketch trial non stop
Open hosts files:
$ open /private/etc/hosts
Edit the file adding:
127.0.0.1 backend.bohemiancoding.com
127.0.0.1 bohemiancoding.sketch.analytics.s3-website-us-east-1.amazonaws.com
https://github.com/facebook/react-native/issues/21490#issuecomment-427240356 | |
https://github.com/react-community/lottie-react-native/issues/269#issuecomment-403497462 |
{ | |
"presets": [ | |
[ | |
"@babel/preset-env", | |
{ | |
"targets": { | |
"esmodules": true | |
} | |
} | |
], |