View pixel-building.geojson

Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View background.js
//this is an example of background animation from my weather comparsion app | |
//you can get early build of app at http://zowni.com | |
//full source of background.js below | |
const React = require('react'); | |
const Svg = React.createFactory(require('react-native-svg').Svg); | |
const {interpolate} = require('d3-interpolate'); | |
//... | |
/** |
View pack.js
/** | |
* pack js and less for browser isolated | |
*/ | |
/** | |
* @typedef {object} IsopackOptions | |
* @param {('js'|'less')} options.type | |
* @param {string} options.sourceId | |
*/ |
View model-decl.js
BEM.Model.Attribute.delc('custom', { | |
parse: function () { | |
//.. | |
} | |
}); | |
BEM.Model.delc('model', { | |
attributes: { | |
a: { | |
type: 'custom' |
View enb-make.js
/** | |
* build setup | |
* @see https://github.com/enb-make/enb | |
*/ | |
module.exports = function (config) { | |
var levels = [ | |
'node_modules/bem-node/node_modules/bem-bl/blocks-common', | |
'node_modules/bem-node/node_modules/bem-bl/blocks-desktop', | |
'node_modules/bem-node/node_modules/bem-json', | |
'node_modules/bem-node/blocks', |