Hey Open Sourcie, thanks for helping us to make UICAP more better !
To get all developer view you can go through documentation.md
- node_modules: where dependencies get installed from node
- plugins: where all of the plugins are stored. It is mainly made up of plugins, with little codebase otherwise.
- releases: where the two main releases are stored and what jsdelivr.com uses to CDN the files.
- src: the files that include the needed plugins and other files. This is a good place to start.
- themes: so far there's only one default theme, but here is where other themes can go.
- web: where we'll showcase or components in future.
Other files in the root are:
- CONTRIBUTING.md: this file
- LICENSE: MIT license in here
- Profcile: Heroku uses this to load the website
- README.md: the file that shows some information for GitHub
- app.js: the website main file
- bower.json: the package for using with bower
- documentation.md: developer documentation
- gulpfile.js: to build the files, just call
gulp watch
to keep an eye on them - package.json: the package definition for github, heroku and others
I recommend reading src/uicap.scss
first. It will give you a general sense of where to find other things. Also, reading the source code for plugins/*
is a good start.
Lint your files with SublimeLinter-contrib-scss-lint
for sublime text. You can see that there are some exceptions.
For testing, you just need to display some common uses of the plugin you write so it can be easily tested in different browsers.
_class.scss
: this is where the placeholder definition and variables go. Read more about SCSS placeholders (tip: they're a really cool feature). Remember, only one placeholder per file and maximum one top level one. Like you would with any Object Oriented language._plugin.scss
: this file should include_class.scss
with a normal@import 'class';
and extend the placeholder you created previously for your actual plugin. See the pluginbutton
for an example.description.html
: a small description that will be included in the plugins page. This is normally a highly visual example.documentation.md
: an in-depth article describing the plugin.info.json
: a file containing all of the information for your plugin. Specially important areid
,name
,included
,affected
andsummary
.test.html
: where your tests should go.