Skip to content

Commit b4a00b2

Browse files
authored
chore: use npm plugin specifiers (#808)
1 parent 4a876cf commit b4a00b2

7 files changed

Lines changed: 6 additions & 12 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ about: Create a report to help us improve
44
title: ''
55
labels: ''
66
assignees: ''
7-
87
---
98

109
**Describe the bug**

.github/ISSUE_TEMPLATE/deno-fmt-bug-report.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ about: Create a report about a bug with the `deno fmt` command
44
title: ''
55
labels: ''
66
assignees: ''
7-
87
---
98

109
**Describe the bug**

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,4 @@ about: Suggest an idea for this project
44
title: ''
55
labels: ''
66
assignees: ''
7-
87
---

.github/ISSUE_TEMPLATE/other.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,4 @@ about: Something that doesn't fall in the other categories
44
title: ''
55
labels: ''
66
assignees: ''
7-
87
---

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ Then in your project's directory with a dprint.json file, run:
1414

1515
```shellsession
1616
dprint add typescript
17-
# or install from npm
18-
dprint add npm:@dprint/typescript
1917
```
2018

2119
See https://dprint.dev/plugins/typescript/ for more information.

dprint.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
"**/target"
1313
],
1414
"plugins": [
15-
"https://plugins.dprint.dev/typescript-0.88.7.wasm",
16-
"https://plugins.dprint.dev/json-0.19.1.wasm",
17-
"https://plugins.dprint.dev/markdown-0.16.3.wasm",
18-
"https://plugins.dprint.dev/toml-0.5.4.wasm",
19-
"https://plugins.dprint.dev/exec-0.4.4.json@c207bf9b9a4ee1f0ecb75c594f774924baf62e8e53a2ce9d873816a408cecbf7"
15+
"npm:@dprint/typescript@0.96.1",
16+
"npm:@dprint/json@0.23.0",
17+
"npm:@dprint/markdown@0.22.1",
18+
"npm:@dprint/toml@0.8.0",
19+
"npm:@dprint/exec@0.7.3/plugin.json@704701df449dd7e942a71144773778ac529d68c2e4657bfc236d393b898b9a67"
2020
]
2121
}

scripts/generate_release_notes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Then in your project's dprint configuration file:
2626
"**/node_modules"
2727
],
2828
"plugins": [
29-
"https://plugins.dprint.dev/typescript-${version}.wasm"
29+
"npm:@dprint/typescript@${version}"
3030
]
3131
}
3232
\`\`\`

0 commit comments

Comments
 (0)