Skip to content

Commit

Permalink
feat(sdk): Initialize project (#346)
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Sep 19, 2024
1 parent d931bca commit db3225c
Show file tree
Hide file tree
Showing 23 changed files with 951 additions and 16 deletions.
47 changes: 47 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 2 additions & 16 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,5 @@
[workspace]
members = [
"xtask",
"packages/emotion",
"packages/jest",
"packages/loadable-components",
"packages/noop",
"packages/react-remove-properties",
"packages/relay",
"packages/remove-console",
"packages/styled-components",
"packages/styled-jsx",
"packages/swc-confidential",
"packages/swc-magic",
"packages/transform-imports",
"packages/prefresh",
]
members = ["xtask", "packages/*"]


resolver = "2"
Expand All @@ -37,6 +22,7 @@ cargo_metadata = "0.18.1"
cipher = "0.4.4"
clap = "4.5.4"
convert_case = "0.6.0"
default-from-serde = "0.1"
fxhash = "0.2.1"
handlebars = "5.1.2"
hex = "0.4.3"
Expand Down
2 changes: 2 additions & 0 deletions packages/swc-sdk/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
transform/
tests/
139 changes: 139 additions & 0 deletions packages/swc-sdk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,139 @@
# @swc/plugin-swc-sdk

## 3.0.1

### Patch Changes

- 04548e2: Update swc_core to 0.103.x

## 3.0.0

### Major Changes

- f8e5fd0: Update swc_core to 0.102.x

## 2.0.10

### Patch Changes

- 7d17e25: Update swc_core to v0.101.x

## 2.0.9

### Patch Changes

- 7391419: Update swc_core to v0.100.0

## 2.0.8

### Patch Changes

- 9c28afb: Update swc_core to 0.99.x (@swc/core 1.7.0)

## 2.0.7

### Patch Changes

- af25741: Update swc_core to 0.96.0

## 2.0.6

### Patch Changes

- 41a8f56: Update swc_core to v0.95.x

## 2.0.5

### Patch Changes

- fc30490: Update swc_core to v0.93.0

## 2.0.4

### Patch Changes

- 0f38844: Publish all chanages

## 2.0.3

### Patch Changes

- 1cc9eda: Update dependencies

## 2.0.2

### Patch Changes

- 247cca6: Update rustc to 'nightly-2024-04-16'

## 2.0.1

### Patch Changes

- 876bbce: Update swc_core to 0.92.x

## 2.0.0

### Major Changes

- 8e91d39: Update swc_core to 0.91.x

## 1.5.121

### Patch Changes

- f4df366: Update swc_core

## 1.5.120

### Patch Changes

- c88b22b: Align package metadata

## 1.5.119

### Patch Changes

- a3cc4fb: Organize pacakge metadata

## 1.5.118

### Patch Changes

- e9e78ef: Update swc crates

## 1.5.117

### Patch Changes

- 6096d6d: Fix plugin version schema issue

## 1.5.116

### Patch Changes

- 37d3aaf: Depend on the swc download counter package

## 1.5.115

### Patch Changes

- 8bd92c7: swc_core 0.90.x

## 1.5.114

### Patch Changes

- 4ef0b7f: Add changelog to the readme

## 1.5.113

### Patch Changes

- 4e72680: swc_core@0.88.0

## 1.5.112

### Patch Changes

- 16bb4d8: swc_core@0.82.x
25 changes: 25 additions & 0 deletions packages/swc-sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
[package]

description = "SWC Plugin for @swc/sdk"


authors = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
name = "swc_plugin_swc_sdk"
publish = false
repository = { workspace = true }
rust-version = { workspace = true }
version = "0.1.0"


[lib]
crate-type = ["cdylib", "rlib"]

[dependencies]
serde_json = { workspace = true }
swc_core = { workspace = true, features = ["ecma_plugin_transform"] }


swc_sdk = { path = "./transform" }
Loading

0 comments on commit db3225c

Please sign in to comment.