Skip to content
This repository was archived by the owner on Mar 27, 2024. It is now read-only.

Commit 283743f

Browse files
authoredFeb 1, 2022
release(ci): publish (#1)
1 parent 0fa8d49 commit 283743f

File tree

5 files changed

+166
-3
lines changed

5 files changed

+166
-3
lines changed
 

‎.github/workflows/ci.yml

+84
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
name: CI
2+
# taken from main dprint plugins
3+
# without npm for now
4+
5+
on: [push, pull_request]
6+
7+
jobs:
8+
build:
9+
name: ${{ matrix.config.kind }} ${{ matrix.config.os }}
10+
runs-on: ${{ matrix.config.os }}
11+
strategy:
12+
matrix:
13+
config:
14+
- os: ubuntu-latest
15+
kind: test_release
16+
- os: ubuntu-latest
17+
kind: test_debug
18+
19+
env:
20+
CARGO_INCREMENTAL: 0
21+
RUST_BACKTRACE: full
22+
23+
steps:
24+
- uses: actions/checkout@v2
25+
- uses: actions-rs/toolchain@v1
26+
with:
27+
profile: minimal
28+
toolchain: 1.57.0
29+
override: true
30+
- name: Install wasm32 target
31+
if: matrix.config.kind == 'test_release'
32+
run: rustup target add wasm32-unknown-unknown
33+
34+
- name: Cache cargo
35+
if: startsWith(github.ref, 'refs/tags/') != true
36+
uses: Swatinem/rust-cache@v1
37+
38+
- name: Build debug
39+
if: matrix.config.kind == 'test_debug'
40+
run: cargo build --verbose
41+
- name: Build release
42+
if: matrix.config.kind == 'test_release'
43+
run: cargo build --target wasm32-unknown-unknown --features wasm --release --verbose
44+
45+
- name: Test debug
46+
if: matrix.config.kind == 'test_debug'
47+
run: cargo test --verbose
48+
- name: Test release
49+
if: matrix.config.kind == 'test_release'
50+
run: cargo test --release --verbose
51+
52+
- name: Get tag version
53+
if: matrix.config.kind == 'test_release' && startsWith(github.ref, 'refs/tags/')
54+
id: get_tag_version
55+
run: echo ::set-output name=TAG_VERSION::${GITHUB_REF/refs\/tags\//}
56+
57+
# CARGO PUBLISH
58+
- name: Cargo login
59+
if: matrix.config.kind == 'test_release' && startsWith(github.ref, 'refs/tags/')
60+
run: cargo login ${{ secrets.CRATES_TOKEN }}
61+
62+
- name: Cargo publish
63+
if: matrix.config.kind == 'test_release' && startsWith(github.ref, 'refs/tags/')
64+
run: cargo publish
65+
66+
# GITHUB RELEASE
67+
- name: Pre-release
68+
if: matrix.config.kind == 'test_release' && startsWith(github.ref, 'refs/tags/')
69+
run: |
70+
# update config schema to have version
71+
sed -i 's/0.0.0/${{ steps.get_tag_version.outputs.TAG_VERSION }}/' deployment/schema.json
72+
# rename the wasm file
73+
(cd target/wasm32-unknown-unknown/release/ && mv dprint_plugin_css.wasm plugin.wasm)
74+
- name: Release
75+
uses: softprops/action-gh-release@v1
76+
if: matrix.config.kind == 'test_release' && startsWith(github.ref, 'refs/tags/')
77+
env:
78+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
79+
with:
80+
files: |
81+
target/wasm32-unknown-unknown/release/plugin.wasm
82+
deployment/schema.json
83+
body: ""
84+
draft: false

‎Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ wasm = ["serde_json", "dprint-core/wasm"]
2525
[dependencies]
2626
anyhow = "1.0.51"
2727
parcel_css = { version = "1.0.0-alpha.14" }
28-
dprint-core = { version = "0.49.0", features = ["formatting"] }
28+
dprint-core = { version = "0.50.0", features = ["formatting"] }
2929
serde = { version = "1.0.117", features = ["derive"] }
3030
serde_json = { version = "1.0", optional = true }
3131

‎LICENSE

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2021-2022 Salomon Popp
4+
5+
Copyright (c) 2021-2022 David Sherret
6+
7+
Permission is hereby granted, free of charge, to any person obtaining a copy
8+
of this software and associated documentation files (the "Software"), to deal
9+
in the Software without restriction, including without limitation the rights
10+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11+
copies of the Software, and to permit persons to whom the Software is
12+
furnished to do so, subject to the following conditions:
13+
14+
The above copyright notice and this permission notice shall be included in all
15+
copies or substantial portions of the Software.
16+
17+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23+
SOFTWARE.

‎deployment/schema.json

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
{
2+
"$schema": "http://json-schema.org/draft-07/schema#",
3+
"$id": "https://plugins.dprint.dev/disrupted/dprint-plugin-css/0.0.0/schema.json",
4+
"type": "object",
5+
"definitions": {
6+
"useTabs": {
7+
"description": "Whether to use tabs (true) or spaces (false).",
8+
"type": "boolean",
9+
"default": false,
10+
"oneOf": [{
11+
"const": true,
12+
"description": ""
13+
}, {
14+
"const": false,
15+
"description": ""
16+
}]
17+
},
18+
"newLineKind": {
19+
"description": "The kind of newline to use.",
20+
"type": "string",
21+
"default": "lf",
22+
"oneOf": [{
23+
"const": "auto",
24+
"description": "For each file, uses the newline kind found at the end of the last line."
25+
}, {
26+
"const": "crlf",
27+
"description": "Uses carriage return, line feed."
28+
}, {
29+
"const": "lf",
30+
"description": "Uses line feed."
31+
}, {
32+
"const": "system",
33+
"description": "Uses the system standard (ex. crlf on Windows)."
34+
}]
35+
}
36+
},
37+
"properties": {
38+
"indentWidth": {
39+
"description": "The number of characters for an indent.",
40+
"default": 2,
41+
"type": "number"
42+
},
43+
"useTabs": {
44+
"$ref": "#/definitions/useTabs"
45+
},
46+
"newLineKind": {
47+
"$ref": "#/definitions/newLineKind"
48+
}
49+
}
50+
}

‎src/wasm_plugin.rs

+8-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,14 @@ impl PluginHandler<Configuration> for CssPluginHandler {
3131
config_key: "css".to_string(),
3232
file_extensions: vec!["css".to_string()],
3333
file_names: vec![],
34-
help_url: "https://dprint.dev/plugins/css".to_string(),
35-
config_schema_url: "".to_string(),
34+
help_url: "https://github.com/disrupted/dprint-plugin-css/issues".to_string(),
35+
config_schema_url: format!(
36+
"https://plugins.dprint.dev/disrupted/dprint-plugin-css/{}/schema.json",
37+
version
38+
),
39+
update_url: Some(
40+
"https://plugins.dprint.dev/disrupted/dprint-plugin-css/latest.json".to_string(),
41+
),
3642
}
3743
}
3844

0 commit comments

Comments
 (0)
This repository has been archived.