Skip to content

Commit ef9337e

Browse files
authored
Remove references to npm start and dev (#2553)
1 parent f0b0d20 commit ef9337e

File tree

3 files changed

+2
-15
lines changed

3 files changed

+2
-15
lines changed

DEVELOP.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,6 @@ Here's what you need to know about how the files are structured in both git and
2727

2828
Run `npm install` to install the npm dependencies.
2929

30-
## Docs site
31-
32-
The Primer CSS docs are built with React using [Doctocat](https://primer.style/doctocat) and automatically deployed on every push to this repo with [Now]. You can run the server locally with:
33-
34-
```sh
35-
npm start
36-
```
37-
38-
Then visit http://localhost:8000 to view the site.
39-
4030
### The docs directory
4131

4232
The [docs directory](../docs/) contains all of the documentation files in our docs site. Files are nested in the `/content` folder.
@@ -66,10 +56,8 @@ Stories are individual `.jsx` or `.mdx` files that contain component HTML for pr
6656
Our [`package.json`](package.json) houses a collection of [run-scripts] that we use to maintain, test, build, and publish Primer CSS. Run `npm run <script>` with any of the following values for `<script>`:
6757

6858
- `dist` runs `script/dist`, which creates CSS bundles of all the `index.scss` files in `src/`.
69-
- `check-links` runs a link checker on your local development server (`localhost:3000`, started with `npm start`).
7059
- `stylelint` lints the CSS source files.
7160
- `eslint` lints the JavaScript source files.
72-
- `start` runs the documentation site locally (alias: `dev`).
7361
- `test` runs our test suite.
7462
- `storybook` runs storybook local development server.
7563

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
"stylelint:add-disables": "script/stylelint-add-disables.js 'src/**/*.scss'",
3535
"eslint": "eslint deprecations.js __tests__ script",
3636
"prepublishOnly": "script/prepublish",
37-
"start": "npm run dev",
3837
"pretest": "npm run dist && script/pretest",
3938
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest",
4039
"release": "changeset publish",

0 commit comments

Comments
 (0)