This file contains 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
const HtmlWebpackPlugin = require("html-webpack-plugin"); | |
const packageJson = require("./package.json"); | |
const backgroundScripts = [ | |
// list of scripts, all origin @ ./src | |
]; | |
const indexScripts = [ | |
// list of scripts, all origin @ ./src | |
]; |
This file contains 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
import React from "react" | |
/** | |
* A HOC that allows generic props mutations (just like ReactRedux.connect, but without being connected to anything) | |
* @param WrappedComponent A React component to wrap | |
* @param mapPropsToProps a logic that computes new props out of existing props | |
* @returns A wrapped Component that has new computed props OOTB | |
*/ | |
const withComputedProps = (WrappedComponent, mapPropsToProps) => props => { | |
let computedProps = {}; |
This file contains 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
[user] | |
name = Shir Brass | |
email = <My Email> | |
[credential] | |
helper = cache --timeout=30000 | |
[core] | |
editor = vim | |
[alias] |
This file contains 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
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"globals" : | |
{ | |
"alwaysShowTabs" : true, | |
"defaultProfile" : "{574e775e-4f2a-5b96-ac1e-a2962a402336}", | |
"initialCols" : 120, | |
"initialRows" : 30, | |
"keybindings" : | |
[ |