Skip to content

Commit c3af72c

Browse files
committed
feat: update tenoxuinstatic engine to v0.3.4
1 parent 66755df commit c3af72c

File tree

3 files changed

+15
-11
lines changed

3 files changed

+15
-11
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@anyframe/core",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "Starter repository template for anyframe project",
55
"author": "NOuSantx <[email protected]>",
66
"license": "MIT",
@@ -42,7 +42,7 @@
4242
"packageManager": "[email protected]",
4343
"devDependencies": {
4444
"@nousantx/someutils": "^0.6.1",
45-
"@tenoxui/static": "^0.3.3",
45+
"@tenoxui/static": "^0.3.4",
4646
"saintest": "^0.2.0",
4747
"typescript": "^5.7.3",
4848
"vite": "^6.1.0"

pnpm-lock.yaml

+7-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/css.test.js

+6-4
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ describe('AnyFrame', () => {
9797
})
9898
const styles = ui.create(['bg-red'])
9999
expect(styles).toContain('@layer theme, base, components, utilities;')
100-
expect(styles).toContain('body { background: #0000ff }')
100+
expect(styles).toContain(' body {\n background: #0000ff\n }')
101101
})
102102

103103
it('should generate styles without layer modifier', () => {
@@ -113,7 +113,7 @@ describe('AnyFrame', () => {
113113
})
114114
const styles = uiNoLayer.create([])
115115
expect(styles).not.toContain('@layer')
116-
expect(styles).toContain('body { background: blue }')
116+
expect(styles).toContain('body {\n background: blue\n}')
117117
})
118118

119119
it('should handle multiple layers with correct order', () => {
@@ -135,8 +135,10 @@ describe('AnyFrame', () => {
135135
apply: { body: 'bg-blue' }
136136
})
137137
const styles = ui.create(['bg-red'])
138-
expect(styles).toContain('body { background: #0000ff }')
139-
expect(styles).toContain('background: #ff0000')
138+
expect(styles).toContain(` body {
139+
background: #0000ff
140+
}`)
141+
expect(styles).toContain('.bg-red { background: #ff0000 }')
140142
})
141143
})
142144

0 commit comments

Comments
 (0)