https://github.com/wood3n/babel-plugin-oxygen
https://github.com/wood3n/babel-plugin-oxygen
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/wood3n/babel-plugin-oxygen
- Owner: wood3n
- Created: 2021-03-13T08:36:06.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-03-14T05:02:49.000Z (over 4 years ago)
- Last Synced: 2025-01-26T08:26:13.601Z (5 months ago)
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## babel-plugin-oxygen
一个简单的将程序中`==`转换成`===`的`babel` plugin,已发布到`npm`
## 使用
### 安装
```bash
yarn add @babel/core @babel/cli babel-plugin-oxygen
```### 配置
```javascript
module.exports = function (api) {
api.cache(true);return {
plugins: ['oxygen'],
};
};
```