Skip to content

Commit

Permalink
move some stuff around for clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
techwraith committed Aug 6, 2013
1 parent 1c2a3e4 commit 3d7dbad
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 45 deletions.
15 changes: 0 additions & 15 deletions entry.css

This file was deleted.

24 changes: 0 additions & 24 deletions entry.js

This file was deleted.

8 changes: 4 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ The app should be pretty easy to get around in the basic structure looks like th

```
ui/
|-entry.js
|-entry.css
static/
node_modules/
entry.js
entry.css
index.html
server.js
```
Expand All @@ -36,11 +36,11 @@ Serves the app on these routes
- `/bundle.css`: serves the bundled css
- `/*`: serves up any static files in `static`

#### `entry.js`
#### `ui/entry.js`

Is the entry point for the Atomify bundled js. This just uses browserify under the hood, so require modules like you normally would. If you'd like to reuire a handlebars template, do that like: `require('template.html.hbs')`.

#### `entry.css`
#### `ui/entry.css`

Is this entry point for the Atomify bundled css. This uses npm-css and rework under the hood.

Expand Down
4 changes: 2 additions & 2 deletions server.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ var cssVariables = {

var atom = atomify({
js: {
entry: './entry.js'
entry: './ui/entry.js'
}
, css: {
entry: './entry.css'
entry: './ui/entry.css'
, variables: cssVariables
}
});
Expand Down
Empty file removed ui/input/input.js
Empty file.
Empty file removed ui/label/index.js
Empty file.

0 comments on commit 3d7dbad

Please sign in to comment.