zss-engine 0.2.73 → 0.2.74

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zss-engine",
3
- "version": "0.2.73",
3
+ "version": "0.2.74",
4
4
  "description": "Zero-runtime StyleSheet Engine",
5
5
  "keywords": [
6
6
  "zero-runtime",
@@ -15,20 +15,20 @@
15
15
  "exports": {
16
16
  "./package.json": "./package.json",
17
17
  ".": {
18
- "types": "./types/index.d.ts",
18
+ "types": "./dist/index.d.ts",
19
19
  "import": "./dist/esm/index.js",
20
20
  "default": "./dist/cjs/index.js"
21
21
  }
22
22
  },
23
23
  "main": "dist/cjs/index.js",
24
24
  "module": "dist/esm/index.js",
25
- "types": "types/index.d.ts",
25
+ "types": "dist/index.d.ts",
26
26
  "files": [
27
27
  "dist/",
28
28
  "types/"
29
29
  ],
30
30
  "scripts": {
31
- "build": "rimraf dist types && pnpm esm && pnpm cjs",
31
+ "build": "rimraf dist && pnpm esm && pnpm cjs",
32
32
  "cjs": "tsc --project tsconfig.cjs.json",
33
33
  "esm": "tsc --project tsconfig.esm.json",
34
34
  "test": "jest"
package/types/index.d.ts CHANGED
@@ -2,7 +2,6 @@ export type { CSSProperties } from './types/common/css-properties';
2
2
  export type { CreateStyleType, ReturnType, CreateStyle } from './types/main/create';
3
3
  export type { CSSHTML, CreateKeyframes } from './types/main/global';
4
4
  export type { CreateValues, CreateTheme, ReturnVariableType, RxVariableSet, ReturnRx } from './types/main/vars';
5
- export type { Join } from './types/main/join';
6
5
  export { isServer, isDevelopment, isTestingDevelopment } from './utils/helper.js';
7
6
  export { genBase36Hash } from './utils/hash.js';
8
7
  export { transpile } from './utils/transpile.js';
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
@@ -1 +0,0 @@
1
- export {};
@@ -1 +0,0 @@
1
- export type Join<T extends readonly string[]> = T extends [infer F extends string, ...infer R extends string[]] ? `${F}${Join<R>}` : '';