This file contains hidden or 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
// webpack.config.js | |
const webpack = require('webpack'); | |
const {resolve} = require('path'); | |
const globby = require('globby'); | |
const {getIfUtils, removeEmpty} = require('webpack-config-utils'); | |
const CopyWebpackPlugin = require('copy-webpack-plugin'); | |
const EventHooksPlugin = require('event-hooks-webpack-plugin'); | |
const plConfig = require('./patternlab-config.json'); | |
const patternlab = require('patternlab-node')(plConfig); | |
const patternEngines = require('patternlab-node/core/lib/pattern_engines'); |
This file contains hidden or 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
// ---- | |
// Sass (v3.4.20) | |
// Compass (v1.0.3) | |
// ---- | |
// primary palette | |
$modernAqua: #0C9C9E; | |
$teal: $modernAqua; | |
$tealLight: mix($teal, #fff, 15%); |
This file contains hidden or 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
var http = require("http"), | |
url = require("url"), | |
path = require("path"), | |
fs = require("fs") | |
port = process.argv[2] || 8888; | |
http.createServer(function(request, response) { | |
var uri = url.parse(request.url).pathname | |
, filename = path.join(process.cwd(), uri); |
This file contains hidden or 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
/*jshint smarttabs:true, maxerr:1000, strict:false*/ | |
/*Sample FAQ code*/ | |
var loadViewModel = function(){ | |
//------------------------------------------------------------------------------ | |
// | |
// MenuItems : Object | |
// Data object for available menu items. |
NewerOlder