Skip to content

Commit c05e0c9

Browse files
committed
refactor: upgrade to dprint-core 0.50 and use standardized plugin.wasm file
1 parent a9d65a1 commit c05e0c9

File tree

6 files changed

+12
-30
lines changed

6 files changed

+12
-30
lines changed

.github/workflows/ci.yml

+3-22
Original file line numberDiff line numberDiff line change
@@ -88,17 +88,17 @@ jobs:
8888
if: matrix.config.kind == 'test_release' && startsWith(github.ref, 'refs/tags/')
8989
run: |
9090
# update config schema to have version
91-
sed -i 's/dockerfile-0.0.0.json/dockerfile-${{ steps.get_tag_version.outputs.TAG_VERSION }}.json/' deployment/schema.json
91+
sed -i 's/dockerfile\/0.0.0/dockerfile\/${{ steps.get_tag_version.outputs.TAG_VERSION }}/' deployment/schema.json
9292
# rename the wasm file
93-
(cd target/wasm32-unknown-unknown/release/ && mv dprint_plugin_dockerfile.wasm dockerfile.wasm)
93+
(cd target/wasm32-unknown-unknown/release/ && mv dprint_plugin_dockerfile.wasm plugin.wasm)
9494
- name: Release
9595
uses: softprops/action-gh-release@v1
9696
if: matrix.config.kind == 'test_release' && startsWith(github.ref, 'refs/tags/')
9797
env:
9898
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
9999
with:
100100
files: |
101-
target/wasm32-unknown-unknown/release/dockerfile.wasm
101+
target/wasm32-unknown-unknown/release/plugin.wasm
102102
deployment/schema.json
103103
body: |
104104
## Install
@@ -130,22 +130,3 @@ jobs:
130130
* [JS Formatter](https://github.com/dprint/js-formatter) - Browser/Deno and Node
131131
* [npm package](https://www.npmjs.com/package/@dprint/dockerfile)
132132
draft: false
133-
134-
# PLUGIN PUBLISH
135-
- name: Checkout plugins repo
136-
if: matrix.config.kind == 'test_release' && startsWith(github.ref, 'refs/tags/')
137-
uses: actions/checkout@v2
138-
with:
139-
repository: dprint/plugins
140-
token: ${{ secrets.CI_REPO_PAT }} # github.token is scoped to current repo, so use this to push to other repo
141-
path: dprint-plugins
142-
- name: Plugin publish
143-
if: matrix.config.kind == 'test_release' && startsWith(github.ref, 'refs/tags/')
144-
run: |
145-
cd dprint-plugins
146-
node scripts/replace-plugin.js dprint-plugin-dockerfile ${{ steps.get_tag_version.outputs.TAG_VERSION }} dockerfile-${{ steps.get_tag_version.outputs.TAG_VERSION }}
147-
git add .
148-
git config user.name "David Sherret"
149-
git config user.email "[email protected]"
150-
git commit -m "dprint-plugin-dockerfile ${{ steps.get_tag_version.outputs.TAG_VERSION }}"
151-
git push origin main

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ tracing = ["dprint-core/tracing"]
2727
[dependencies]
2828
anyhow = "1.0.51"
2929
dockerfile-parser = "0.8.0-alpha.1"
30-
dprint-core = { version = "0.49.0", features = ["formatting"] }
30+
dprint-core = { version = "0.50.0", features = ["formatting"] }
3131
serde = { version = "1.0.88", features = ["derive"] }
3232
serde_json = { version = "1.0", optional = true }
3333

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2021 David Sherret
3+
Copyright (c) 2021-2022 David Sherret
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

deployment/schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "http://json-schema.org/draft-07/schema#",
3-
"$id": "https://plugins.dprint.dev/schemas/dockerfile-0.0.0.json",
3+
"$id": "https://plugins.dprint.dev/dprint/dprint-plugin-dockerfile/0.0.0/schema.json",
44
"type": "object",
55
"definitions": {
66
"newLineKind": {

dprint.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
"**/target"
1212
],
1313
"plugins": [
14-
"https://plugins.dprint.dev/typescript-0.59.0.wasm",
15-
"https://plugins.dprint.dev/json-0.13.1.wasm",
16-
"https://plugins.dprint.dev/markdown-0.11.1.wasm",
17-
"https://plugins.dprint.dev/toml-0.5.2.wasm",
14+
"https://plugins.dprint.dev/typescript-0.62.1.wasm",
15+
"https://plugins.dprint.dev/json-0.14.0.wasm",
16+
"https://plugins.dprint.dev/markdown-0.12.1.wasm",
17+
"https://plugins.dprint.dev/toml-0.5.3.wasm",
1818
"https://plugins.dprint.dev/rustfmt-0.4.0.exe-plugin@c6bb223ef6e5e87580177f6461a0ab0554ac9ea6b54f78ea7ae8bf63b14f5bc2"
1919
]
2020
}

src/wasm_plugin.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ impl PluginHandler<Configuration> for DockerfilePluginHandler {
2828
file_extensions: vec!["dockerfile".to_string()],
2929
file_names: vec!["Dockerfile".to_string()],
3030
help_url: "https://dprint.dev/plugins/dockerfile".to_string(),
31-
config_schema_url: format!("https://plugins.dprint.dev/schemas/dockerfile-{}.json", version),
31+
config_schema_url: format!("https://plugins.dprint.dev/dprint/dprint-plugin-dockerfile/{}/schema.json", version),
32+
update_url: Some("https://plugins.dprint.dev/dprint/dprint-plugin-dockerfile/latest.json".to_string()),
3233
}
3334
}
3435

0 commit comments

Comments
 (0)