Skip to content

Commit 0439059

Browse files
authored
Merge branch 'master' into renovate/all-minor-patch
2 parents 9cd19a0 + 62ba77b commit 0439059

File tree

5 files changed

+37
-37
lines changed

5 files changed

+37
-37
lines changed

README.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# nuxt-speedcurve
1+
# @nuxtjs/speedcurve
22

33
[![npm version][npm-version-src]][npm-version-href]
44
[![npm downloads][npm-downloads-src]][npm-downloads-href]
@@ -9,7 +9,7 @@
99
> [Speedcurve LUX](https://speedcurve.com) integration for [Nuxt](https://nuxtjs.org)
1010
1111
- [**Release Notes**](./CHANGELOG.md)
12-
- [📖 **Documentation**](https://nuxt-speedcurve.netlify.app)
12+
- [📖 **Documentation**](https://speedcurve.nuxtjs.org)
1313

1414
## Features
1515
- Collect performance metrics from real users
@@ -21,28 +21,28 @@
2121

2222
## Setup
2323

24-
1. Add `nuxt-speedcurve` dependency to your project
24+
1. Add `@nuxtjs/speedcurve` dependency to your project
2525

2626
```bash
27-
yarn add nuxt-speedcurve # or npm install nuxt-speedcurve
27+
yarn add @nuxtjs/speedcurve # or npm install @nuxtjs/speedcurve
2828
```
2929

30-
2. Add `nuxt-speedcurve` to the `modules` section of `nuxt.config.js`
30+
2. Add `@nuxtjs/speedcurve` to the `modules` section of `nuxt.config.js`
3131
```js
3232
{
3333
modules: [
3434
// Simple usage
35-
'nuxt-speedcurve',
35+
'@nuxtjs/speedcurve',
3636

3737
// With options
38-
['nuxt-speedcurve', { /* module options */ }]
38+
['@nuxtjs/speedcurve', { /* module options */ }]
3939
]
4040
}
4141
```
4242
or add options to the `lux` property in your `nuxt.config.js`
4343
```js
4444
{
45-
modules: ['nuxt-speedcurve'],
45+
modules: ['@nuxtjs/speedcurve'],
4646

4747
lux: {
4848
// id: 'YOUR_LUX_ID'
@@ -68,17 +68,17 @@ or add options to the `lux` property in your `nuxt.config.js`
6868
Copyright (c) Josh Deltener <hecktarzuli@gmail.com>
6969

7070
<!-- Badges -->
71-
[npm-version-src]: https://img.shields.io/npm/v/nuxt-speedcurve/latest.svg
72-
[npm-version-href]: https://npmjs.com/package/nuxt-speedcurve
71+
[npm-version-src]: https://img.shields.io/npm/v/@nuxtjs/speedcurve/latest.svg
72+
[npm-version-href]: https://npmjs.com/package/@nuxtjs/speedcurve
7373

74-
[npm-downloads-src]: https://img.shields.io/npm/dt/nuxt-speedcurve.svg
75-
[npm-downloads-href]: https://npmjs.com/package/nuxt-speedcurve
74+
[npm-downloads-src]: https://img.shields.io/npm/dt/@nuxtjs/speedcurve.svg
75+
[npm-downloads-href]: https://npmjs.com/package/@nuxtjs/speedcurve
7676

77-
[github-actions-ci-src]: https://github.com/hecktarzuli/nuxt-speedcurve/workflows/ci/badge.svg
78-
[github-actions-ci-href]: https://github.com/hecktarzuli/nuxt-speedcurve/actions?query=workflow%3Aci
77+
[github-actions-ci-src]: https://github.com/nuxt-community/speedcurve-module/workflows/ci/badge.svg
78+
[github-actions-ci-href]: https://github.com/nuxt-community/speedcurve-module/actions?query=workflow%3Aci
7979

80-
[codecov-src]: https://img.shields.io/codecov/c/github/hecktarzuli/nuxt-speedcurve.svg
81-
[codecov-href]: https://codecov.io/gh/hecktarzuli/nuxt-speedcurve
80+
[codecov-src]: https://img.shields.io/codecov/c/github/nuxt-community/speedcurve-module.svg
81+
[codecov-href]: https://codecov.io/gh/nuxt-community/speedcurve-module
8282

83-
[license-src]: https://img.shields.io/npm/l/nuxt-speedcurve.svg
84-
[license-href]: https://npmjs.com/package/nuxt-speedcurve
83+
[license-src]: https://img.shields.io/npm/l/@nuxtjs/speedcurve.svg
84+
[license-href]: https://npmjs.com/package/@nuxtjs/speedcurve

docs/content/en/setup.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ category: Guide
66
---
77
## Installation
88

9-
1. Add `nuxt-speedcurve` dependency to your project:
9+
1. Add `@nuxtjs/speedcurve` dependency to your project:
1010

1111
<code-group>
1212
<code-block label="Yarn" active>
@@ -30,7 +30,7 @@ category: Guide
3030
```js[nuxt.config.js]
3131
export default {
3232
modules: [
33-
'nuxt-speedcurve'
33+
'@nuxtjs/speedcurve'
3434
]
3535
}
3636
```
@@ -41,12 +41,12 @@ Add a section called `lux` to your `nuxt.config.js` and set `id` to the Speedcur
4141
```js[nuxt.config.js]
4242
export default {
4343
modules: [
44-
'nuxt-speedcurve'
44+
'@nuxtjs/speedcurve'
4545
],
4646
lux: {
4747
id: 'YOUR_LUX_ID',
4848
// more options
49-
}
49+
}
5050
}
5151
```
5252

docs/content/settings.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"title": "nuxt/speedcurve",
3-
"url": "/no-idea/",
3+
"url": "https://speedcurve.nuxtjs.org",
44
"logo": {
55
"light": "/logo-light.svg",
66
"dark": "/logo-dark.svg"
77
},
8-
"github": "hecktarzuli/nuxt-speedcurve",
9-
"twitter": "@JoshDeltener"
10-
}
8+
"github": "nuxt-community/speedcurve-module",
9+
"twitter": "@nuxt_js"
10+
}

docs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "nuxt-speedcurve-docs",
2+
"name": "@nuxtjs/speedcurve-docs",
33
"version": "1.0.0",
44
"private": true,
55
"scripts": {
@@ -12,4 +12,4 @@
1212
"@nuxt/content-theme-docs": "^0.5.3",
1313
"nuxt": "^2.14.4"
1414
}
15-
}
15+
}

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
{
2-
"name": "nuxt-speedcurve",
2+
"name": "@nuxtjs/speedcurve",
33
"version": "1.0.0",
4-
"description": "",
5-
"repository": "hecktarzuli/nuxt-speedcurve",
4+
"description": "Speedcurve LUX integration for Nuxt",
5+
"repository": "nuxt-community/speedcurve-module",
66
"license": "MIT",
77
"contributors": [
88
{
99
"name": "Josh Deltener <hecktarzuli@gmail.com>"
1010
}
1111
],
12+
"main": "lib/module.js",
1213
"files": [
1314
"lib"
1415
],
15-
"main": "lib/module.js",
1616
"scripts": {
1717
"dev": "nuxt examples/universal",
18-
"test-universal": "nuxt build examples/universal && nuxt start examples/universal",
19-
"test-full-static": "nuxt generate examples/full-static && nuxt start examples/full-static",
20-
"test-static": "nuxt generate examples/universal",
21-
"test-spa": "nuxt generate examples/spa",
2218
"docs": "nuxt docs",
2319
"lint": "eslint --ext .js,.vue .",
2420
"release": "yarn test && standard-version && git push --follow-tags && npm publish",
25-
"test": "yarn lint && jest"
21+
"test": "yarn lint && jest",
22+
"test-full-static": "nuxt generate examples/full-static && nuxt start examples/full-static",
23+
"test-spa": "nuxt generate examples/spa",
24+
"test-static": "nuxt generate examples/universal",
25+
"test-universal": "nuxt build examples/universal && nuxt start examples/universal"
2626
},
2727
"dependencies": {},
2828
"devDependencies": {

0 commit comments

Comments
 (0)