babel-plugin-transform-react-jsx-to-rn-stylesheet 3.4.4 → 3.4.7

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/package.json +3 -3
  2. package/src/types.ts +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babel-plugin-transform-react-jsx-to-rn-stylesheet",
3
- "version": "3.4.4",
3
+ "version": "3.4.7",
4
4
  "description": "Transform stylesheet selector to style in JSX Elements.",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -24,10 +24,10 @@
24
24
  },
25
25
  "dependencies": {
26
26
  "camelize": "^1.0.0",
27
- "taro-css-to-react-native": "3.4.4"
27
+ "taro-css-to-react-native": "3.4.7"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@types/babel__core": "^7.1.14"
31
31
  },
32
- "gitHead": "099d062d74faa3f124ca2499de1154fae0adc4f9"
32
+ "gitHead": "bb62ad5d4f099940c8c4d6dfcba9b743bc3d2acf"
33
33
  }
package/src/types.ts CHANGED
@@ -6,7 +6,8 @@ export interface PluginOptions {
6
6
  enableMultipleClassName?: boolean
7
7
  }
8
8
 
9
+ // @ts-ignore
9
10
  export interface ConvertPluginPass extends PluginPass {
10
11
  file: any
11
- opts: PluginOptions | undefined
12
+ opts?: PluginOptions
12
13
  }