Skip to content

Commit

Permalink
add a from me banner and fix grunt watch
Browse files Browse the repository at this point in the history
  • Loading branch information
Jodie Doubleday committed Jun 1, 2015
1 parent b2368a2 commit 242a3fb
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
1 change: 1 addition & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
</head>
<body>
<div id="application"></div>
<a href="https://github.com/holidayextras/ui-toolkit"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/38ef81f8aca64bb9a64448d0d70f1308ef5341ab/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6461726b626c75655f3132313632312e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"></a>
<script src="vendor/codemirror/codemirror.js"></script>
<script src="vendor/codemirror/javascript.js"></script>
<script src="vendor/JSXTransformer.js"></script>
Expand Down
3 changes: 3 additions & 0 deletions grunt/shell.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
module.exports = {
ulimit: {
command: "ulimit -n 9999",
},
buildDist: {
command: "./node_modules/.bin/browserify -g [ ./node_modules/reactify --extension '.jsx' ] ./index.js --standalone ui-toolkit > ./dist/ui-toolkit.standalone.js"
},
Expand Down
15 changes: 8 additions & 7 deletions grunt/watch.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
module.exports = {
docs: {
files: ['docs/**/*.jsx', 'docs/**/*.js', 'src/**/*.js*'],
tasks: ['docs-build'],
options: {
livereload: true
}
},
docs: {
files: ['docs/src/**/*.js*', 'src/**/*.js*'],
// files: ['docs/**/*.jsx', 'src/**/*.jsx', 'src/**/*.js'],
tasks: ['docs-build'],
options: {
livereload: true
}
},
less: {
files: ['src/less/**/*.less'],
tasks: ['less', 'copy:css'],
Expand Down

0 comments on commit 242a3fb

Please sign in to comment.