Skip to content

Commit

Permalink
docs: updated changelog for v1.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Aetherinox committed Apr 1, 2024
1 parent b35b694 commit ad3efa0
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 9 deletions.
8 changes: 7 additions & 1 deletion docs/docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,13 @@ tags:

![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)

### <!-- md:version stable- --> 1.6.2 <small>March 30, 2024</small> { id="1.6.2" }
### <!-- md:version stable- --> 1.6.3 <small>April 01, 2024</small> { id="1.6.3" }

- `dep`: update rollup 3.29.3 -> 4.13.2
- `dep`: added `@rollup/plugin-replace`
- `remove`: `rollup-plugin-define`

### <!-- md:version stable- --> 1.6.2 <small>March 31, 2024</small> { id="1.6.2" }

- `fix`: update language entries, fixed a few typos
- `fix`: update leaf header icon tooltip
Expand Down
19 changes: 11 additions & 8 deletions rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -109,14 +109,17 @@ export default {
],
plugins: [
replace( {
"process.env.NODE_ENV": bIsProd ? '"production"' : '"dev"',
"process.env.ENV": bIsProd ? '"production"' : '"dev"',
"process.env.BUILD": bIsProd ? '"production"' : '"dev"',
"process.env.PLUGIN_VERSION": `"${ version }"`,
"process.env.BUILD_GUID": `"${ build_guid }"`,
"process.env.BUILD_UUID": `"${ build_uuid }"`,
"process.env.BUILD_DATE": JSON.stringify( moment( now ) ),
"process.env.AUTHOR": `"${ author }"`,
preventAssignment: true,
values: {
"process.env.NODE_ENV": bIsProd ? '"production"' : '"dev"',
"process.env.ENV": bIsProd ? '"production"' : '"dev"',
"process.env.BUILD": bIsProd ? '"production"' : '"dev"',
"process.env.PLUGIN_VERSION": `"${ version }"`,
"process.env.BUILD_GUID": `"${ build_guid }"`,
"process.env.BUILD_UUID": `"${ build_uuid }"`,
"process.env.BUILD_DATE": JSON.stringify( moment( now ) ),
"process.env.AUTHOR": `"${ author }"`,
},
} ),
typescript( ),
nodeResolve( { browser: true } ),
Expand Down

0 comments on commit ad3efa0

Please sign in to comment.