Skip to content

Commit b1585be

Browse files
committed
chore: transfer owner
1 parent 0617bc5 commit b1585be

File tree

8 files changed

+468
-20
lines changed

8 files changed

+468
-20
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
node-version: 18
3434
registry-url: 'https://registry.npmjs.org/'
3535
cache: 'pnpm'
36+
3637
# setup rust
3738
- uses: actions-rs/toolchain@v1
3839
with:

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
registry=https://registry.npmjs.com/

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "swc_plugin_auto_css_modules"
3-
version = "1.2.0"
3+
version = "1.3.0"
44
edition = "2021"
55
authors = ["fz6m"]
66
description = "Auto css modules plugin for swc"
77
license = "MIT"
8-
repository = "https://github.com/xn-sakina/swc-plugin-auto-css-modules.git"
8+
repository = "https://github.com/umijs/swc-plugin-auto-css-modules.git"
99
publish = false
1010

1111
[lib]
@@ -16,7 +16,7 @@ lto = true
1616

1717
[dependencies]
1818
serde_json = "1.0.79"
19-
auto_css_modules = { version = "1.2.0", path = "./transform" }
19+
auto_css_modules = { version = "1.3.0", path = "./transform" }
2020
swc_core = { version = "0.48.29", features = [
2121
"ecma_plugin_transform",
2222
"ecma_visit",

example/package.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@
88
},
99
"devDependencies": {
1010
"@swc/core": "^1.3.24",
11-
"@types/node": "^18.11.17",
12-
"@xn-sakina/mental": "^2.0.0",
13-
"tsx": "^3.12.1",
14-
"typescript": "^4.9.4",
1511
"core-js": "^3.27.1"
1612
}
1713
}

package.json

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "swc-plugin-auto-css-modules",
3-
"version": "1.2.1",
3+
"version": "1.3.0",
44
"description": "Auto css modules plugin for swc",
55
"author": "fz6m",
66
"license": "MIT",
7-
"homepage": "https://github.com/xn-sakina/swc-plugin-auto-css-modules#README",
7+
"homepage": "https://github.com/umijs/swc-plugin-auto-css-modules#README",
88
"repository": {
99
"type": "git",
10-
"url": "https://github.com/xn-sakina/swc-plugin-auto-css-modules"
10+
"url": "https://github.com/umijs/swc-plugin-auto-css-modules"
1111
},
1212
"types": "index.d.ts",
1313
"files": [
@@ -28,5 +28,12 @@
2828
"prepublishOnly": "pnpm build && pnpm move && pnpm test",
2929
"push": "npm publish --access public --registry https://registry.npmjs.com/"
3030
},
31-
"packageManager": "[email protected]"
31+
"packageManager": "[email protected]",
32+
"devDependencies": {
33+
"@types/node": "^18.11.17",
34+
"tsx": "^3.12.1",
35+
"zx": "^7.1.1",
36+
"@xn-sakina/mental": "^2.0.0",
37+
"typescript": "^4.9.4"
38+
}
3239
}

pnpm-lock.yaml

Lines changed: 446 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

transform/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "auto_css_modules"
3-
version = "1.2.0"
3+
version = "1.3.0"
44
authors = ["fz6m"]
55
description = "Auto css modules plugin for swc"
66
edition = "2021"
77
license = "MIT"
8-
repository = "https://github.com/xn-sakina/swc-plugin-auto-css-modules.git"
8+
repository = "https://github.com/umijs/swc-plugin-auto-css-modules.git"
99
publish = false
1010

1111
[dependencies]

tsconfig.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"extends": "@xn-sakina/mental/lib"
3+
}
4+

0 commit comments

Comments
 (0)