Skip to content

Commit 4af1002

Browse files
authored
refactor(linter): Rename package (#29)
1 parent bdb9e19 commit 4af1002

File tree

13 files changed

+11
-13
lines changed

13 files changed

+11
-13
lines changed

.github/workflows/publish-node.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -539,6 +539,7 @@ jobs:
539539
run: |
540540
./scripts/move-artifacts.sh css || true
541541
./scripts/move-artifacts.sh html || true
542+
./scripts/move-artifacts.sh linter || true
542543
543544
- name: Move binaries
544545
shell: bash
@@ -554,6 +555,7 @@ jobs:
554555
echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
555556
(cd packages/css && npm publish --access public || true)
556557
(cd packages/html && npm publish --access public || true)
558+
(cd packages/linter && npm publish --access public || true)
557559
env:
558560
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
559561
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
[workspace]
2-
members = [
3-
"crates/css_node",
4-
"crates/html_node",
5-
"crates/lint_node",
6-
]
2+
members = ["crates/css_node", "crates/html_node", "crates/linter_node"]
73

84
[profile.release]
95
codegen-units = 1
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build = "build.rs"
44
edition = "2021"
55
exclude = ["artifacts.json", "index.node"]
66
license = "Apache-2.0"
7-
name = "lint_node"
7+
name = "linter_node"
88
publish = false
99
version = "0.1.0"
1010

packages/css/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swc/css",
3-
"version": "0.0.18",
3+
"version": "0.0.20",
44
"description": "Super-fast alternative for postcss",
55
"homepage": "https://swc.rs",
66
"main": "./index.js",

packages/html/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swc/html",
3-
"version": "0.0.18",
3+
"version": "0.0.20",
44
"description": "Super-fast alternative for posthtml",
55
"homepage": "https://swc.rs",
66
"main": "./index.js",

0 commit comments

Comments
 (0)