Skip to content

Instantly share code, notes, and snippets.

@dignifiedquire
Last active March 22, 2016 21:17
Show Gist options
  • Save dignifiedquire/b364338f089dcef13912 to your computer and use it in GitHub Desktop.
Save dignifiedquire/b364338f089dcef13912 to your computer and use it in GitHub Desktop.
├── dist # auto-generated by the transpile and minification task.
│ ├── index.js
│ └── index.min.js
├── lib # auto-generated source tree, transpiled using babel. Makes the code es5 compatible
│ ├── index.js
│ └── ...
├── src # source code. Can use the latest features (ES2015) in JavaScript.
│ ├── index.js
│ └── ...
├── test # tests folder
│ ├── node.js # Node specific test setup
│ ├── browser.js # Browser specific test setup
│ ├── mytest.spec.js # All files ending in .spec.js are considered test files to be run
│ └── ...
├── package.json
├── README.md
├── CONTRIBUTING.md
├── circle.yml
├── .travis.yml
└── node_modules
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment