Skip to content

Commit 67e10b7

Browse files
Merge pull request #26 from pulsar-edit/fix-broken-links
Change all registry URLs (and fix a broken link)
2 parents d919939 + f8f1605 commit 67e10b7

File tree

14 files changed

+25
-25
lines changed

14 files changed

+25
-25
lines changed

docs/core-packages-and-features/autocomplete.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ The autocompletion interface is implemented in the {autocomplete-plus} package.
2020
* The core {autocomplete-css} package suggests tag names, CSS property names, and contextually relevant values for properties.
2121
* The core {autocomplete-snippets} package suggests snippets whose prefixes match what has already been typed in the current word.
2222

23-
Community packages — in particular [packages that wrap language servers](/ide-features/) — can also act as “brains” for autocompletion. Pulsar’s package registry can show you [a list of packages](https://web.pulsar-edit.dev/packages?serviceType=provided&service=autocomplete.provider) that can supply data to `autocomplete-plus`.
23+
Community packages — in particular [packages that wrap language servers](/ide-features/) — can also act as “brains” for autocompletion. Pulsar’s package registry can show you [a list of packages](https://packages.pulsar-edit.dev/packages?serviceType=provided&service=autocomplete.provider) that can supply data to `autocomplete-plus`.

docs/developing-for-pulsar/developing-a-package.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ You can run the generator by invoking the command palette and searching for "Gen
1414
::: note Note
1515

1616
You may encounter a situation where your package is not loaded.
17-
Make sure the package name you choose isn’t an existing bundled package name or one hosted on [pulsar-edit.dev](https://web.pulsar-edit.dev/packages).
17+
Make sure the package name you choose isn’t an existing bundled package name or one hosted on [pulsar-edit.dev](https://packages.pulsar-edit.dev/packages).
1818

1919
:::
2020

docs/developing-for-pulsar/developing-a-theme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Themes are pretty straightforward, but it’s still helpful to be familiar with
2323
- Your theme’s `package.json` must contain a `theme` key with a value of `ui`
2424
or `syntax` for Pulsar to recognize and load it as a theme.
2525
- You can find existing themes to install or fork in
26-
[Pulsar Package Repository](https://web.pulsar-edit.dev/packages). <!--TODO: Update to a themes URL if we get one on the front end site-->
26+
[Pulsar Package Registry](https://packages.pulsar-edit.dev/packages). <!--TODO: Update to a themes URL if we get one on the front end site-->
2727

2828
## Creating a syntax theme
2929

docs/developing-for-pulsar/maintaining-your-package.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Some people prefer to control every aspect of the package publishing process. No
1818

1919
::: note Note
2020

21-
The `ppm` tool will only publish and [Pulsar Package Registry](https://web.pulsar-edit.dev) will only list packages that are hosted on [GitHub](https://github.com), regardless of what process is used to publish them.
21+
The `ppm` tool will only publish and [Pulsar Package Registry](https://packages.pulsar-edit.dev) will only list packages that are hosted on [GitHub](https://github.com), regardless of what process is used to publish them.
2222

2323
:::
2424

@@ -56,7 +56,7 @@ The name of your package will be reserved even after being unpublished!
5656

5757
:::
5858

59-
If you no longer want to support your package and cannot find anyone to take it over, you can unpublish your package from [Pulsar Package Registry](https://web.pulsar-edit.dev). For example, if your package is named `package-name`, you’d run:
59+
If you no longer want to support your package and cannot find anyone to take it over, you can unpublish your package from [Pulsar Package Registry](https://packages.pulsar-edit.dev). For example, if your package is named `package-name`, you’d run:
6060

6161
```sh
6262
$ pulsar -p unpublish package-name

docs/developing-for-pulsar/publishing.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ There are a few things you should double check before publishing:
2525

2626
## Publish your package
2727

28-
Before you publish a package it is a good idea to check ahead of time if a package with the same name has already been published to [the Pulsar Package Repository](https://web.pulsar-edit.dev/packages). You can do that by visiting `https://web.pulsar-edit.dev/packages/your-package-name` to see if the package already exists. If it does, update your package’s name to something that is available before proceeding.
28+
Before you publish a package, it’s a good idea to check ahead of time if a package with the same name has already been published to [the Pulsar Package Registry](https://packages.pulsar-edit.dev/packages). You can do that by visiting `https://packages.pulsar-edit.dev/packages/your-package-name` to see if the package already exists. If it does, update your package’s name to something that is available before proceeding.
2929

3030
Now let’s review what the `pulsar -p publish` command does:
3131

32-
1. Registers the package name on Pulsar Package Repository if it is being published for the first time.
32+
1. Registers the package name on Pulsar Package Registry if it is being published for the first time.
3333
2. Updates the `version` field in the `package.json` file and commits it.
3434
3. Creates a new [Git tag](https://git-scm.com/book/en/Git-Basics-Tagging) for the version being published.
3535
4. Pushes the tag and current branch up to GitHub.
36-
5. Updates Pulsar Package Repository with the new version being published.
36+
5. Updates Pulsar Package Registry with the new version being published.
3737

3838
Now run the following commands to publish your package:
3939

@@ -46,7 +46,7 @@ $ pulsar -p publish minor
4646

4747
If this is the first package you are publishing, the `pulsar -p publish` command may prompt you for your GitHub username and password. If you have two-factor authentication enabled, use a [personal access token](https://help.github.com/articles/creating-a-personal-access-token-for-the-command-line/) in lieu of a password. This is required to publish and you only need to enter this information the first time you publish. The credentials are stored securely in your [keychain](<https://en.wikipedia.org/wiki/Keychain_(software)>) once you login.
4848

49-
Your package is now published and available on Pulsar Package Repository. Head on over to `https://web.pulsar-edit.dev/packages/your-package-name` to see your package’s page.
49+
Your package is now published and available on Pulsar Package Registry. Head on over to `https://packages.pulsar-edit.dev/packages/your-package-name` to see your package’s page.
5050

5151
With `pulsar -p publish`, you can bump the version and publish by using
5252

docs/docs.11tydata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
{
5555
"text": "APIs",
5656
"link": "/api",
57-
"summary": "Read reference documentation for our APIs: Pulsar’s own API and that of the package repository."
57+
"summary": "Read reference documentation for our APIs: Pulsar’s own API and that of the package registry."
5858
}
5959
]
6060

docs/getting-started/dependencies-for-some-community-packages.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ This is an advanced topic and it might not be necessary! Most community packages
99

1010
However, some popular packages will involve the use of native modules. Please read this page if you’re planning to install one of the packages below:
1111

12-
* [x-terminal-reloaded](https://web.pulsar-edit.dev/packages/x-terminal-reloaded)
13-
* [Hydrogen](https://web.pulsar-edit.dev/packages/hydrogen) (which should be [installed directly from GitHub](https://github.com/pulsar-edit/package-backend/blob/main/docs/reference/Admin_Actions.md#hydrogen))
12+
* [x-terminal-reloaded](https://packages.pulsar-edit.dev/packages/x-terminal-reloaded)
13+
* [Hydrogen](https://packages.pulsar-edit.dev/packages/hydrogen) (which should be [installed directly from GitHub](https://github.com/pulsar-edit/package-backend/blob/main/docs/reference/Admin_Actions.md#hydrogen))
1414

1515
:::
1616

docs/getting-started/terminal-commands.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ The `-p`/`--package` switch is most useful for AppImage installations, but you m
8080

8181
## About `ppm`
8282

83-
`ppm` stands for _Pulsar Package Manager_. It’s a Pulsar-branded version of [`npm`](https://web.pulsar-edit.dev/) that installs packages from Pulsar’s own [package registry](https://web.pulsar-edit.dev/).
83+
`ppm` stands for _Pulsar Package Manager_. It’s a Pulsar-branded version of [`npm`](https://packages.pulsar-edit.dev/) that installs packages from Pulsar’s own [package registry](https://packages.pulsar-edit.dev/).
8484

8585
It’ll be covered in greater depth later; just know that it’s a way to install Pulsar packages from the command line, and it works whether or not Pulsar is running.
8686

docs/ide-features/community-packages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ In this case, the services’ differing designs are the reason. The `linter` ser
5353

5454
Nonetheless, this is an implementation detail that users usually won’t have to care about. All you need to know is that **providers** need to match up with **consumers** and _vice versa_.
5555

56-
In the Pulsar package repository, each package will list the services it consumes and provides. Clicking on a particular service in that list will show you search results for packages that fulfill the _opposite_ side of that service (and can therefore be paired with the original package).
56+
In the Pulsar Package Registry, each package will list the services it consumes and provides. Clicking on a particular service in that list will show you search results for packages that fulfill the _opposite_ side of that service (and can therefore be paired with the original package).
5757

5858
:::
5959

docs/ide-features/getting-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ Using language servers in Pulsar is a two-step process:
4747

4848
The Language Server Project site maintains [a list of known language servers](https://microsoft.github.io/language-server-protocol/implementors/servers/) for various languages and frameworks. Often you’ll see more than one language server on that page for the same language! But it’s typically enough simply to verify that at least one server exists for your language.
4949

50-
### Search the package repository for an IDE package for your language
50+
### Search the package registry for an IDE package for your language
5151

52-
Packages that integrate with language servers are named according to convention. If you’re looking for an IDE package for a given language, search for `ide-[language]` in the package repository.
52+
Packages that integrate with language servers are named according to convention. If you’re looking for an IDE package for a given language, search for `ide-[language]` in the package registry.
5353

5454
Suppose you use a language `foo`. You may find an `ide-foo` package in the repository; this would’ve been written for Atom and may be several years old by now, but may still work to some extent.
5555

0 commit comments

Comments
 (0)