oxc-webpack-loader 0.0.1 → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -26,7 +26,7 @@
26
26
 
27
27
  ## oxc-loader
28
28
 
29
- Webpack loader for [oxc-transform](https://npmx.dev/package/oxc-transform). A drop-in replacement for `swc-loader` and `babel-loader` that uses Oxc for fast JavaScript and TypeScript transformation.
29
+ Webpack loader for [oxc-transform](https://oxc.rs/docs/guide/usage/transformer.html#features). A drop-in replacement for `swc-loader` and `babel-loader` that uses Oxc for fast JavaScript and TypeScript transformation.
30
30
 
31
31
  ## Install
32
32
 
@@ -49,7 +49,7 @@ module.exports = {
49
49
  loader: "oxc-webpack-loader",
50
50
  options: {
51
51
  // oxc-transform options
52
- // https://npmx.dev/package/oxc-transform
52
+ // https://oxc.rs/docs/guide/usage/transformer.html#features
53
53
  },
54
54
  },
55
55
  },
@@ -112,7 +112,7 @@ Source maps are also automatically enabled when webpack's `devtool` option is se
112
112
 
113
113
  ## Options
114
114
 
115
- All [oxc-transform `TransformOptions`](https://npmx.dev/package/oxc-transform) are supported, plus:
115
+ All [oxc-transform `TransformOptions`](https://oxc.rs/docs/guide/usage/transformer.html#features) are supported, plus:
116
116
 
117
117
  | Option | Type | Default | Description |
118
118
  | ------ | --------- | ------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oxc-webpack-loader",
3
- "version": "0.0.1",
3
+ "version": "1.0.0",
4
4
  "description": "Webpack loader for oxc",
5
5
  "license": "MIT",
6
6
  "author": "oxc-project",