Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
//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'); | |
//... | |
/** |
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
/** | |
* pack js and less for browser isolated | |
*/ | |
/** | |
* @typedef {object} IsopackOptions | |
* @param {('js'|'less')} options.type | |
* @param {string} options.sourceId | |
*/ |
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
BEM.Model.Attribute.delc('custom', { | |
parse: function () { | |
//.. | |
} | |
}); | |
BEM.Model.delc('model', { | |
attributes: { | |
a: { | |
type: 'custom' |
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
/** | |
* 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', |