Skip to content

Commit

Permalink
Fix node_modules paths in README
Browse files Browse the repository at this point in the history
  • Loading branch information
caseyscarborough committed Jun 19, 2021
1 parent ad974af commit 9cd0af2
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,14 @@ npm install --save github-activity-feed
Add the files to your webpage:

```html
<link rel="stylesheet" href="node_modules/octicons/octicons/octicons.css">
<link rel="stylesheet" href="node_modules/octicons/build/font/octicons.css">
<link rel="stylesheet" href="node_modules/github-activity-feed/dist/github-activity.min.css">

<script type="text/javascript" src="node_modules/mustache/mustache.js"></script>
<script type="text/javascript" src="node_modules/mustache/mustache.min.js"></script>
<script type="text/javascript" src="node_modules/github-activity-feed/dist/github-activity.min.js"></script>

<!-- if using dark theme add this in addition to the main CSS file -->
<link rel="stylesheet" href="node_modules/github-activity-feed/dist/github-activity.dark.min.css">
```

## Building
Expand Down Expand Up @@ -72,7 +75,7 @@ GitHubActivity.feed({
username: "your-username",
repository: "your-repo", // optional
selector: "#feed",
limit: 20 // optional
limit: 20, // optional
});
```

Expand Down

0 comments on commit 9cd0af2

Please sign in to comment.