-
Notifications
You must be signed in to change notification settings - Fork 865
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
library versions, error handling, copy tweaks
- Loading branch information
Showing
10 changed files
with
91 additions
and
75,136 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
debug.log | ||
pkg | ||
node_modules/ | ||
build |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
mkdir build 2> /dev/null | ||
This comment has been minimized.
Sorry, something went wrong. |
||
browserify js/menu.jsx > build/menu.js | ||
browserify js/initialize.jsx > build/initialize.js |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
<link rel="stylesheet" href="../node_modules/bootstrap/dist/css/bootstrap.css"/> | ||
<link rel="stylesheet" href="../node_modules/bootstrap-toggle/css/bootstrap2-toggle.css"/> | ||
<link rel="stylesheet" href="../css/menu.css"/> | ||
<script src="../js/menu.js"></script> | ||
<script src="../build/menu.js"></script> | ||
This comment has been minimized.
Sorry, something went wrong.
jbenet
Member
|
||
</head> | ||
<body> | ||
<div id="menu-app"/> | ||
|
This file contains 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
Oops, something went wrong.
mkdir -p build
is nice because it doesn't return an error code if the dir exists which may be relevant ifset -e
is later added to the script (no need to change here, just a tip)