styleframe 1.0.2 → 1.0.4

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/CHANGELOG.md ADDED
@@ -0,0 +1,58 @@
1
+ # styleframe
2
+
3
+ ## 1.0.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#43](https://github.com/styleframe-dev/styleframe/pull/43) [`7e3d008`](https://github.com/styleframe-dev/styleframe/commit/7e3d00849067618802334d5e6823fc31f3aa2612) Thanks [@alexgrozav](https://github.com/alexgrozav)! - feat: add support for generic records in createUseVariable
8
+
9
+ - Updated dependencies [[`7e3d008`](https://github.com/styleframe-dev/styleframe/commit/7e3d00849067618802334d5e6823fc31f3aa2612)]:
10
+ - @styleframe/cli@1.0.5
11
+
12
+ ## 1.0.3
13
+
14
+ ### Patch Changes
15
+
16
+ - [#35](https://github.com/styleframe-dev/styleframe/pull/35) [`5d53569`](https://github.com/styleframe-dev/styleframe/commit/5d5356960af687884703f3de5d3d1638d8ee9d8a) Thanks [@alexgrozav](https://github.com/alexgrozav)! - fix: Update published files references in package.json
17
+
18
+ - Updated dependencies [[`5d53569`](https://github.com/styleframe-dev/styleframe/commit/5d5356960af687884703f3de5d3d1638d8ee9d8a), [`5d53569`](https://github.com/styleframe-dev/styleframe/commit/5d5356960af687884703f3de5d3d1638d8ee9d8a)]:
19
+ - @styleframe/core@1.0.2
20
+ - @styleframe/loader@1.0.3
21
+ - @styleframe/transpiler@1.0.3
22
+ - @styleframe/plugin@1.0.1
23
+ - @styleframe/cli@1.0.3
24
+
25
+ ## 1.0.2
26
+
27
+ ### Patch Changes
28
+
29
+ - Updated dependencies [[`68cd004`](https://github.com/styleframe-dev/styleframe/commit/68cd004b04395797876b5e805c0b910d6b665f35), [`68cd004`](https://github.com/styleframe-dev/styleframe/commit/68cd004b04395797876b5e805c0b910d6b665f35), [`68cd004`](https://github.com/styleframe-dev/styleframe/commit/68cd004b04395797876b5e805c0b910d6b665f35), [`68cd004`](https://github.com/styleframe-dev/styleframe/commit/68cd004b04395797876b5e805c0b910d6b665f35)]:
30
+ - @styleframe/cli@1.0.2
31
+ - @styleframe/loader@1.0.2
32
+ - @styleframe/plugin@1.0.0
33
+ - @styleframe/transpiler@1.0.2
34
+
35
+ ## 1.0.1
36
+
37
+ ### Patch Changes
38
+
39
+ - Update README.md
40
+ - Updated dependencies
41
+ - @styleframe/cli@1.0.1
42
+ - @styleframe/core@1.0.1
43
+ - @styleframe/loader@1.0.1
44
+ - @styleframe/transpiler@1.0.1
45
+
46
+ ## 1.0.0
47
+
48
+ ### Major Changes
49
+
50
+ - 8204e6d: Official styleframe release. Start writing modern, clean, composable CSS using TypeScript, with a focus on simplicity and performance.
51
+
52
+ ### Patch Changes
53
+
54
+ - Updated dependencies [8204e6d]
55
+ - @styleframe/cli@1.0.0
56
+ - @styleframe/core@1.0.0
57
+ - @styleframe/loader@1.0.0
58
+ - @styleframe/transpiler@1.0.0
package/dist/cli.cjs CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  //#region rolldown:runtime
2
3
  var __create = Object.create;
3
4
  var __defProp = Object.defineProperty;
package/dist/cli.js CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  import main from "@styleframe/cli";
2
3
 
3
4
  //#region src/cli.ts
package/dist/cli.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"cli.js","names":[],"sources":["../src/cli.ts"],"sourcesContent":["import main from \"@styleframe/cli\";\n\nmain();\n"],"mappings":";;;AAEA,MAAM"}
1
+ {"version":3,"file":"cli.js","names":[],"sources":["../src/cli.ts"],"sourcesContent":["#!/usr/bin/env node\n\nimport main from \"@styleframe/cli\";\n\nmain();\n"],"mappings":";;;;AAIA,MAAM"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "styleframe",
3
- "version": "1.0.2",
3
+ "version": "1.0.4",
4
4
  "bin": {
5
5
  "styleframe": "./dist/cli.cjs"
6
6
  },
@@ -8,8 +8,10 @@
8
8
  "type": "module",
9
9
  "license": "MIT",
10
10
  "files": [
11
- "README.md",
12
- "dist"
11
+ "dist",
12
+ "LICENSE",
13
+ "CHANGELOG.md",
14
+ "README.md"
13
15
  ],
14
16
  "sideEffects": false,
15
17
  "main": "./dist/index.js",
@@ -81,12 +83,12 @@
81
83
  "publishConfig": {
82
84
  "access": "public"
83
85
  },
84
- "dependencies": {
85
- "@styleframe/cli": "^1.0.2",
86
- "@styleframe/plugin": "^1.0.0",
87
- "@styleframe/core": "^1.0.1",
88
- "@styleframe/loader": "^1.0.2",
89
- "@styleframe/transpiler": "^1.0.2"
86
+ "peerDependencies": {
87
+ "@styleframe/cli": "^1.0.5",
88
+ "@styleframe/plugin": "^1.0.1",
89
+ "@styleframe/core": "^1.0.2",
90
+ "@styleframe/transpiler": "^1.0.3",
91
+ "@styleframe/loader": "^1.0.3"
90
92
  },
91
93
  "devDependencies": {
92
94
  "@types/node": "^22.15.17",
@@ -95,7 +97,12 @@
95
97
  "tsdown": "^0.11.9",
96
98
  "typescript": "^5.8.3",
97
99
  "vitest": "^3.1.3",
98
- "@styleframe/config-typescript": "^1.0.1"
100
+ "@styleframe/config-typescript": "^1.0.1",
101
+ "@styleframe/core": "^1.0.2",
102
+ "@styleframe/cli": "^1.0.5",
103
+ "@styleframe/plugin": "^1.0.1",
104
+ "@styleframe/loader": "^1.0.3",
105
+ "@styleframe/transpiler": "^1.0.3"
99
106
  },
100
107
  "homepage": "https://github.com/styleframe-dev/styleframe#readme",
101
108
  "bugs": {