This repo includes code and documentation for the Draft U.S. Web Design Standards website. For information on the Standards (components) themselves, please visit web-design-standards.
Note that this README includes steps to pull the latest version of the Standards into your local instance of the documentation.
The Draft U.S. Web Design Standards documentation is built using Jekyll for the file framework, gulp for task management, and the node module for the Standards.
You will need to have the following installed on your machine before following the commands below:
- Ruby v2.2.2+, Installation guides
- Node v4.2.3+, Installation guides
The documentation is built using gulp automation. To use gulp, first make sure you have it installed on your machine (globally):
npm install --global gulp-cliTo start, run the following command to install project dependencies:
npm installNext, you’ll perform a build step to copy and compile all of the necessary files that create the site:
npm run buildNow that all of your dependencies are installed, you can run your local server by running the following command:
npm startGo to 127.0.0.1:4000 in your browser — you should be viewing a local instance of standards.usa.gov.
Here are a few other utility commands you may find useful:
-
npm run clean: Cleans out copied-over dependency assets. -
npm run lint: Runseslintandsass-lintagainst JavaScript and Sass files. -
npm test: Runsnpm run lintand can also be used to run any tests. -
npm run watch: Runs a series of commands that watches for any changes in both the Standards node module and the root level asset folders in this repo.
Sometimes you will want to use the latest version of the web-design-standards repo. Follow these steps to do so:
- Clone the latest version of the
web-design-standardsrepo. - Run
npm installto install the dependencies required for the package in theweb-design-standardsdirectory. - Run
npm run build:packageto create the built version of the Standards in theweb-design-standardsdirectory. - Run
npm linkin the root level of theweb-design-standardsdirectory on your local machine. - Run
npm link uswdsin the root level of theweb-design-standards-docsdirectory on your local machine. - Run
npm run watchin both project directories to have changes automatically built and compiled on changes to any asset files. - In a new terminal window, run
npm startin theweb-design-standards-docsdirectory to start the Jekyll server locally.
You are now using the latest version of the Standards via your cloned version on your local machine. To stop using this version, type npm unlink uswds from the root level of the web-design-standards-docs directory.
Please read through our contributing guidelines. These guidelines are directions for opening issues and submitting pull requests, and they also detail the coding and design standards we follow.