@csszyx/compiler 0.6.0 → 0.7.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.
package/dist/index.cjs CHANGED
@@ -3842,7 +3842,6 @@ var VERSION = "0.0.0";
3842
3842
  var DEFAULT_COMPILER_OPTIONS = {
3843
3843
  buildId: Date.now().toString(),
3844
3844
  development: process.env.NODE_ENV !== "production",
3845
- autoInjectRecovery: false,
3846
3845
  strictMode: false
3847
3846
  };
3848
3847
  function mergeOptions(options = {}) {
package/dist/index.d.cts CHANGED
@@ -1452,10 +1452,6 @@ interface CompilerOptions {
1452
1452
  * Enable development mode features
1453
1453
  */
1454
1454
  development?: boolean;
1455
- /**
1456
- * Auto-inject recovery tokens
1457
- */
1458
- autoInjectRecovery?: boolean;
1459
1455
  /**
1460
1456
  * Strict mode - fail build on warnings
1461
1457
  */
package/dist/index.d.ts CHANGED
@@ -1452,10 +1452,6 @@ interface CompilerOptions {
1452
1452
  * Enable development mode features
1453
1453
  */
1454
1454
  development?: boolean;
1455
- /**
1456
- * Auto-inject recovery tokens
1457
- */
1458
- autoInjectRecovery?: boolean;
1459
1455
  /**
1460
1456
  * Strict mode - fail build on warnings
1461
1457
  */
package/dist/index.js CHANGED
@@ -3783,7 +3783,6 @@ var VERSION = "0.0.0";
3783
3783
  var DEFAULT_COMPILER_OPTIONS = {
3784
3784
  buildId: Date.now().toString(),
3785
3785
  development: process.env.NODE_ENV !== "production",
3786
- autoInjectRecovery: false,
3787
3786
  strictMode: false
3788
3787
  };
3789
3788
  function mergeOptions(options = {}) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@csszyx/compiler",
3
- "version": "0.6.0",
3
+ "version": "0.7.0",
4
4
  "description": "Core compiler and transformation logic for csszyx",
5
5
  "keywords": [
6
6
  "csszyx",
@@ -47,7 +47,7 @@
47
47
  "@babel/core": "^7.23.7",
48
48
  "@babel/types": "^7.23.6",
49
49
  "@babel/traverse": "^7.23.7",
50
- "@csszyx/core": "0.6.0"
50
+ "@csszyx/core": "0.7.0"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@types/babel__core": "^7.20.5",