Skip to content

Commit ad3efa0

Browse files
committed
docs: updated changelog for v1.6.3
1 parent b35b694 commit ad3efa0

File tree

2 files changed

+18
-9
lines changed

2 files changed

+18
-9
lines changed

docs/docs/changelog.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@ tags:
77

88
![Version](https://img.shields.io/github/v/tag/Aetherinox/obsidian-gistr?logo=GitHub&label=version&color=ba5225) ![Downloads](https://img.shields.io/github/downloads/Aetherinox/obsidian-gistr/total) ![Repo Size](https://img.shields.io/github/repo-size/Aetherinox/obsidian-gistr?label=size&color=59702a) ![Last Commit)](https://img.shields.io/github/last-commit/Aetherinox/obsidian-gistr?color=b43bcc)
99

10-
### <!-- md:version stable- --> 1.6.2 <small>March 30, 2024</small> { id="1.6.2" }
10+
### <!-- md:version stable- --> 1.6.3 <small>April 01, 2024</small> { id="1.6.3" }
11+
12+
- `dep`: update rollup 3.29.3 -> 4.13.2
13+
- `dep`: added `@rollup/plugin-replace`
14+
- `remove`: `rollup-plugin-define`
15+
16+
### <!-- md:version stable- --> 1.6.2 <small>March 31, 2024</small> { id="1.6.2" }
1117

1218
- `fix`: update language entries, fixed a few typos
1319
- `fix`: update leaf header icon tooltip

rollup.config.mjs

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -109,14 +109,17 @@ export default {
109109
],
110110
plugins: [
111111
replace( {
112-
"process.env.NODE_ENV": bIsProd ? '"production"' : '"dev"',
113-
"process.env.ENV": bIsProd ? '"production"' : '"dev"',
114-
"process.env.BUILD": bIsProd ? '"production"' : '"dev"',
115-
"process.env.PLUGIN_VERSION": `"${ version }"`,
116-
"process.env.BUILD_GUID": `"${ build_guid }"`,
117-
"process.env.BUILD_UUID": `"${ build_uuid }"`,
118-
"process.env.BUILD_DATE": JSON.stringify( moment( now ) ),
119-
"process.env.AUTHOR": `"${ author }"`,
112+
preventAssignment: true,
113+
values: {
114+
"process.env.NODE_ENV": bIsProd ? '"production"' : '"dev"',
115+
"process.env.ENV": bIsProd ? '"production"' : '"dev"',
116+
"process.env.BUILD": bIsProd ? '"production"' : '"dev"',
117+
"process.env.PLUGIN_VERSION": `"${ version }"`,
118+
"process.env.BUILD_GUID": `"${ build_guid }"`,
119+
"process.env.BUILD_UUID": `"${ build_uuid }"`,
120+
"process.env.BUILD_DATE": JSON.stringify( moment( now ) ),
121+
"process.env.AUTHOR": `"${ author }"`,
122+
},
120123
} ),
121124
typescript( ),
122125
nodeResolve( { browser: true } ),

0 commit comments

Comments
 (0)