Skip to content
This repository has been archived by the owner on Jul 17, 2023. It is now read-only.

Commit

Permalink
Update site to run on Federalist
Browse files Browse the repository at this point in the history
This commit includes some changes to setup the site so that it can be
built and published on Federalist. These changes include:

- Moving dependencies into the `dependencies` prop in the package.json
  since Federalist only installs prod deps.
- Add an nvmrc to tell Federalist which node version to use
- Add a federalist script to build the site
  • Loading branch information
jmhooper committed May 12, 2017
1 parent 5126bf0 commit e900f4e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,4 @@ jspm_packages
/css/
/fonts/
/img/
_site/
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
6.10
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"docgen": "./node_modules/.bin/jsdoc ./src/ -r -d ./dist/doc --readme README.md",
"build": "./node_modules/.bin/gulp",
"package": "./node_modules/.bin/gulp package",
"watch": "./node_modules/.bin/gulp watch"
"watch": "./node_modules/.bin/gulp watch",
"federalist": "npm run package"
},
"repository": {
"type": "git",
Expand All @@ -21,7 +22,7 @@
"url": "https://github.com/truetandem/fedramp-dashboard/issues"
},
"homepage": "https://github.com/truetandem/fedramp-dashboard#readme",
"devDependencies": {
"dependencies": {
"angular": "1.5.7",
"angular-aria": "1.5.8",
"angular-mocks": "1.5.8",
Expand Down

0 comments on commit e900f4e

Please sign in to comment.