Skip to content

Commit 93e802a

Browse files
author
streamich
committed
minor things
1 parent 930a043 commit 93e802a

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.npmignore

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
.idea
22
test.ts
33
test.js
4+
list.ts
5+
list.js
6+
media.ts
7+
media.js

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ function concat(blocks) {
124124
}
125125
}
126126
}
127-
return blockstrs.join('');
127+
return blockstrs.join('\n');
128128
}
129129
function css(pojo) {
130130
var blocks = toBlocks(pojo);

index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ function concat(blocks) {
125125
}
126126
}
127127
}
128-
return blockstrs.join('');
128+
return blockstrs.join('\n');
129129
}
130130

131131

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "css-light",
33
"description": "Write CSS in JavaScript",
4-
"version": "1.0.6",
4+
"version": "1.0.7",
55
"keywords": [
66
"css",
77
"javascript",

0 commit comments

Comments
 (0)