-
Notifications
You must be signed in to change notification settings - Fork 315
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Link to dependencies in package view
Also: * Use webpack for JS bundle * Allow customizing appName * Have a "not found" page when you go to a package and it doesn't exist
- Loading branch information
Nathan L Smith
committed
Jan 21, 2016
1 parent
58c060d
commit 05dbeb0
Showing
11 changed files
with
1,747 additions
and
101 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,7 +1,7 @@ | ||
app/**/*.js | ||
app/**/*.js.map | ||
*.css | ||
*.css.map | ||
bundle.js | ||
bundle.js.map | ||
node_modules | ||
npm-debug.log | ||
typings |
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
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 |
---|---|---|
|
@@ -6,6 +6,10 @@ | |
} | ||
|
||
&-deps { | ||
h4 { | ||
margin-top: 1em; | ||
} | ||
|
||
&-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 |
---|---|---|
|
@@ -4,6 +4,7 @@ import * as Immutable from "immutable"; | |
import * as actionTypes from "./actions"; | ||
|
||
const initialState = Immutable.Record({ | ||
appName: "bldr", | ||
currentYear: new Date().getFullYear(), | ||
isUserNavOpen: false, | ||
isSignedIn: true, | ||
|
@@ -23,21 +24,30 @@ const initialState = Immutable.Record({ | |
release: "20160111220549", | ||
source: "https://www.openssl.org/source/openssl-1.0.2e.tar.gz", | ||
sha: "e23ccafdb75cfcde782da0151731aa2185195ac745eea3846133f2e05c0e0bff", | ||
buildDependencies: {}, | ||
deps: { | ||
"chef/glibc": { | ||
buildDependencies: [], | ||
dependencies: [ | ||
{ | ||
identifier: "chef/glibc/2.19/20160111220307", | ||
name: "glibc", | ||
derivation: "chef", | ||
version: "2.19", | ||
release: "20160111220307", | ||
}, | ||
"chef/zlib": { | ||
{ | ||
identifier: "chef/zlib/1.2.8/20160111220313", | ||
name: "zlib", | ||
derivation: "chef", | ||
version: "1.2.8", | ||
release: "20160111220313", | ||
}, | ||
"chef/cacerts": { | ||
{ | ||
identifier: "chef/cacerts/2016.01.11/20160111220317", | ||
name: "cacerts", | ||
derivation: "chef", | ||
version: "2016.01.11", | ||
release: "20160111220317", | ||
} | ||
} | ||
] | ||
}, | ||
{ | ||
identifier: "smith/runit", | ||
|
@@ -46,17 +56,20 @@ const initialState = Immutable.Record({ | |
description: "It cannot be stopped.", | ||
version: "2.1.2", | ||
release: "20160111220840", | ||
deps: { | ||
"chef/glibc": { | ||
dependencies: [ | ||
{ | ||
identifier: "chef/glibc/2.19/20160111220307", | ||
name: "glibc", | ||
derivation: "chef", | ||
version: "2.19", | ||
release: "20160111220307", | ||
} | ||
}, | ||
], | ||
maintainer: "Joshua Timberman <[email protected]>", | ||
license: "BSD", | ||
source: "http://smarden.org/runit/runit-2.1.2.tar.gz", | ||
sha: "6fd0160cb0cf1207de4e66754b6d39750cff14bb0aa66ab49490992c0c47ba18", | ||
buildDependencies: {}, | ||
buildDependencies: [], | ||
}, | ||
] | ||
})(); | ||
|
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.
05dbeb0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Delivery Status: