-
Notifications
You must be signed in to change notification settings - Fork 327
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Run the GOV.UK Prototype Kit locally
- Loading branch information
1 parent
cabede6
commit 788bdaf
Showing
4 changed files
with
65 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# GOV.UK Prototype Kit review | ||
|
||
This package is used to review the GOV.UK Prototype Kit using a development version of GOV.UK Frontend. | ||
|
||
```shell | ||
npm run create --workspace govuk-protoype-kit-review | ||
npm run dev --workspace govuk-protoype-kit-review | ||
``` |
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,20 @@ | ||
{ | ||
"private": true, | ||
"name": "@govuk-frontend/govuk-prototype-kit-review", | ||
"description": "GOV.UK Prototype Kit review", | ||
"engines": { | ||
"node": "^18.12.0", | ||
"npm": "^8.1.0 || ^9.1.0" | ||
}, | ||
"license": "MIT", | ||
"scripts": { | ||
"precreate": "del-cli dist", | ||
"create": "govuk-prototype-kit create dist", | ||
"postcreate": "cd dist && npm link ../../govuk-frontend", | ||
"dev": "cd dist && govuk-prototype-kit dev" | ||
}, | ||
"devDependencies": { | ||
"del-cli": "^5.0.0", | ||
"govuk-prototype-kit": "^13.13.1" | ||
} | ||
} |