Skip to content

Commit 1c61ddd

Browse files
committed
released v1.9.0
1 parent db98278 commit 1c61ddd

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "refs-cli",
3-
"version": "1.8.3",
3+
"version": "1.9.0",
44
"description": "Command line tool to generate Quick Reference website.",
55
"homepage": "https://jaywcjlove.github.io/refs-cli/",
66
"funding": "https://jaywcjlove.github.io/#/sponsor",

src/utils/create.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,8 @@ export function create(str = '', options: Options = {}) {
163163
node.children.unshift(header(options));
164164
node.children.push(footer(options));
165165
const analytics = googleAnalytics(options.config?.analyticsId);
166-
// node.children.push(...analytics);
167-
node.children = node.children.concat(search(options));
168-
node.children = node.children.concat(analytics);
166+
node.children.push(...analytics);
167+
node.children.push(...search(options));
169168
}
170169
}
171170
},

0 commit comments

Comments
 (0)