Skip to content

Instantly share code, notes, and snippets.

{
"editor.minimap.enabled": false,
"html.format.wrapLineLength": 0
}
@rochapablo
rochapablo / README.md
Last active June 14, 2018 07:50 — forked from azarus/gulptask.js
Gulp Task to transform Typescript path imports into relative paths using the tsconfig

from this

import Head from '~components/Commons/Head';
require('~images/test.jpg')

to this

// extension for jQuery
(function (root) {
if (root.Enumerable == null) {
throw new Error("can't find Enumerable. linq.jquery.js must load after linq.js");
}
if (root.jQuery == null) {
throw new Error("can't find jQuery. linq.jquery.js must load after jQuery");
}
// http://css3.bradshawenterprises.com/blog/why-sass/
// _constants.scss
$brand-color: rgb(255,0,0);
$accent-color: darken($brand-color, 10); // That is, 10% darker than the brand-color.
$body-font: "Helvetica Neue", Arial, sans-serif;
$header-font: "Segoe UI", "Myriad Pro", $body-font;
$width: 960px;