Last active
March 22, 2016 21:17
-
-
Save dignifiedquire/b364338f089dcef13912 to your computer and use it in GitHub Desktop.
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
├── 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