Skip to content

Commit

Permalink
Merge pull request #3367 from uswds/release-2.6.0
Browse files Browse the repository at this point in the history
Release 2.6.0
  • Loading branch information
thisisdano committed Mar 18, 2020
2 parents fe40d6f + f5ed10a commit 91c56d4
Show file tree
Hide file tree
Showing 76 changed files with 2,903 additions and 2,896 deletions.
2 changes: 0 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,6 @@ jobs:
command: |
npm config set "//registry.npmjs.org/:_authToken=$NPM_TOKEN"
npm publish
- snyk/scan:
organization: uswds
workflows:
version: 2
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
12.13.0
12.16.1
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
src/stylesheets/core/system-tokens/**/*
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ How you implement the design system depends on the needs of your project and you

### Download

1. Download the [USWDS zip file](https://github.com/uswds/uswds/releases/tag/v2.5.1) from the latest USWDS release and open that file.
1. Download the [USWDS zip file](https://github.com/uswds/uswds/releases/tag/v2.6.0) from the latest USWDS release and open that file.

After extracting the zip file you should see the following file and folder structure:

```
uswds-2.5.1/
uswds-2.6.0/
├── css/
│   ├── uswds.min.css.map
│   ├── uswds.min.css
Expand All @@ -87,7 +87,7 @@ How you implement the design system depends on the needs of your project and you
```
example-project/
├── assets/
│   ├── uswds-2.5.1/
│   ├── uswds-2.6.0/
│   ├── stylesheets/
│   ├── images/
│   └── javascript/
Expand All @@ -107,10 +107,10 @@ How you implement the design system depends on the needs of your project and you
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>My Example Project</title>
<link rel="stylesheet" href="assets/uswds-2.5.1/css/uswds.min.css" />
<link rel="stylesheet" href="assets/uswds-2.6.0/css/uswds.min.css" />
</head>
<body>
<script src="assets/uswds-2.5.1/js/uswds.min.js"></script>
<script src="assets/uswds-2.6.0/js/uswds.min.js"></script>
</body>
</html>
```
Expand Down
1 change: 1 addition & 0 deletions docs/WHO_IS_USING_USWDS.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Below are a list of websites and applications currently using the U.S. Web Desig
- [18F Before you ship](https://before-you-ship.18f.gov/)
- [18F Front End Guide](https://frontend.18f.gov/)
- [Accessibility for Teams](https://accessibility.digital.gov/)
- [Advanced Distributed Learning (ADL) Initiative](https://adlnet.gov)
- [Agricultural Marketing Service - USDA](http://gipsa.usda.gov/)
- [Agricultural Research Service - USDA](https://www.ars.usda.gov/)
- [America’s Seed Fund - National Science Foundation](https://seedfund.nsf.gov/)
Expand Down
6 changes: 6 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,3 +71,9 @@ gulp.task("default", function(done) {

done();
});

gulp.task("watch", function() {
gulp.watch("src/stylesheets/**/*.scss", gulp.series("sass")),
gulp.watch("src/js/**/*.js", gulp.series("javascript"));
return;
});

0 comments on commit 91c56d4

Please sign in to comment.