Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 451 Bytes

readme.md

File metadata and controls

22 lines (18 loc) · 451 Bytes

autoloading javascript

import React from 'react'
import _ from 'lodash'
import TheThing, * as Thing from 'something'
import { someMethod, anotherMethod } from './whatever'
import * as util from './util'
import $ from 'jquery'

// templates
import _$1_ from 'components/*'
import _$2_Page from 'components/pages/*'
import * as _$3_ from 'blah/*'
import { _$4_ } from 'foo/**/*.js'

TODO

  • ignore option
  • inherit/extend npm package