@tarojs/parse-css-to-stylesheet 0.0.43 → 0.0.44

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 (3) hide show
  1. package/index.d.ts +0 -2
  2. package/index.js +1 -2
  3. package/package.json +14 -14
package/index.d.ts CHANGED
@@ -9,7 +9,5 @@ export interface ParseOptions {
9
9
  }
10
10
  export interface ParseResult {
11
11
  code: string
12
- cssVariables?: string
13
12
  }
14
13
  export function parse(component: string, styles: Array<string>, options: ParseOptions): ParseResult
15
- export function combineCssVariables(variables: Array<string>): string | null
package/index.js CHANGED
@@ -252,7 +252,6 @@ if (!nativeBinding) {
252
252
  throw new Error(`Failed to load native binding`)
253
253
  }
254
254
 
255
- const { parse, combineCssVariables } = nativeBinding
255
+ const { parse } = nativeBinding
256
256
 
257
257
  module.exports.parse = parse
258
- module.exports.combineCssVariables = combineCssVariables
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tarojs/parse-css-to-stylesheet",
3
- "version": "0.0.43",
3
+ "version": "0.0.44",
4
4
  "main": "index.js",
5
5
  "types": "index.d.ts",
6
6
  "napi": {
@@ -55,18 +55,18 @@
55
55
  "packageManager": "yarn@3.6.4",
56
56
  "repository": "https://github.com/NervJS/parse-css-to-stylesheet",
57
57
  "optionalDependencies": {
58
- "@tarojs/parse-css-to-stylesheet-win32-x64-msvc": "0.0.43",
59
- "@tarojs/parse-css-to-stylesheet-darwin-x64": "0.0.43",
60
- "@tarojs/parse-css-to-stylesheet-linux-x64-gnu": "0.0.43",
61
- "@tarojs/parse-css-to-stylesheet-darwin-arm64": "0.0.43",
62
- "@tarojs/parse-css-to-stylesheet-android-arm64": "0.0.43",
63
- "@tarojs/parse-css-to-stylesheet-linux-arm64-gnu": "0.0.43",
64
- "@tarojs/parse-css-to-stylesheet-linux-arm64-musl": "0.0.43",
65
- "@tarojs/parse-css-to-stylesheet-win32-arm64-msvc": "0.0.43",
66
- "@tarojs/parse-css-to-stylesheet-linux-arm-gnueabihf": "0.0.43",
67
- "@tarojs/parse-css-to-stylesheet-linux-x64-musl": "0.0.43",
68
- "@tarojs/parse-css-to-stylesheet-win32-ia32-msvc": "0.0.43",
69
- "@tarojs/parse-css-to-stylesheet-android-arm-eabi": "0.0.43",
70
- "@tarojs/parse-css-to-stylesheet-darwin-universal": "0.0.43"
58
+ "@tarojs/parse-css-to-stylesheet-win32-x64-msvc": "0.0.44",
59
+ "@tarojs/parse-css-to-stylesheet-darwin-x64": "0.0.44",
60
+ "@tarojs/parse-css-to-stylesheet-linux-x64-gnu": "0.0.44",
61
+ "@tarojs/parse-css-to-stylesheet-darwin-arm64": "0.0.44",
62
+ "@tarojs/parse-css-to-stylesheet-android-arm64": "0.0.44",
63
+ "@tarojs/parse-css-to-stylesheet-linux-arm64-gnu": "0.0.44",
64
+ "@tarojs/parse-css-to-stylesheet-linux-arm64-musl": "0.0.44",
65
+ "@tarojs/parse-css-to-stylesheet-win32-arm64-msvc": "0.0.44",
66
+ "@tarojs/parse-css-to-stylesheet-linux-arm-gnueabihf": "0.0.44",
67
+ "@tarojs/parse-css-to-stylesheet-linux-x64-musl": "0.0.44",
68
+ "@tarojs/parse-css-to-stylesheet-win32-ia32-msvc": "0.0.44",
69
+ "@tarojs/parse-css-to-stylesheet-android-arm-eabi": "0.0.44",
70
+ "@tarojs/parse-css-to-stylesheet-darwin-universal": "0.0.44"
71
71
  }
72
72
  }