Inspired by https://medium.com/@var_bin/angularjs-webpack-lazyload-bb7977f390dd
but using wepback import()
function
Working with:
- @uirouter/angularjs: 1.0.22
- @uirouter/core: 5.0.23
- angular: 1.4.9
/** | |
* @flow | |
*/ | |
import * as React from "react"; | |
import { unstable_createResource } from "react-cache"; | |
import * as Scheduler from "scheduler"; | |
import { StorageArea } from "std:kv-storage"; | |
// Creates a ref that tracks the latest value of the argument passed to it |
Inspired by https://medium.com/@var_bin/angularjs-webpack-lazyload-bb7977f390dd
but using wepback import()
function
Working with:
/** | |
* @flow | |
*/ | |
import * as React from "react"; | |
type SafeAreaInsetsContextType = $ReadOnly<{| | |
top: number, | |
left: number, | |
right: number, |
#!/usr/bin/env bash | |
echo "Starting bootstrapping" | |
# Check for Homebrew, install if we don't have it | |
if test ! $(which brew); then | |
echo "Installing homebrew..." | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
fi |
language: node_js | |
node_js: | |
- "8" | |
cache: | |
directories: | |
- "node_modules" | |
branches: | |
only: |
// ---- | |
// Sass (v3.4.21) | |
// Compass (v1.0.3) | |
// ---- | |
// Sass modifiers mixin by Sarah Dayan | |
// Generate All Your Utility Classes with Sass Maps: frontstuff.io/generate-all-your-utility-classes-with-sass-maps | |
// http://frontstuff.io | |
// https://github.com/sarahdayan |
A simple App using Vue.js & Firebase with Auth.
See the DEMO.
set nocompatible | |
set encoding=utf-8 nobomb | |
filetype off | |
" set the runtime path to include Vundle and initialize | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
" let Vundle manage Vundle | |
Plugin 'VundleVim/Vundle.vim' |