Skip to content

Commit 84eddf0

Browse files
committed
Merge branch 'beta'
2 parents 418cad6 + 9263607 commit 84eddf0

File tree

5 files changed

+15
-8
lines changed

5 files changed

+15
-8
lines changed

CHANGELOG.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,20 @@
1-
# v2.0.4 (January 14, 2022)
1+
# v2.0.5 (January 15, 2022)
22

3-
- Fix: scripts
4-
- Feature: examples
5-
- Refactor: removed console.log()
3+
- Fix: remove tests from build
4+
- Fix: translate()
65

76
<!-- all-shields/sponsors-badges:START -->
87

98
[![Donate Paypal](https://img.shields.io/badge/donate-paypal-005EA6.svg?style=for-the-badge&logo=paypal)](https://www.paypal.me/ptkdev) [![Donate Ko-Fi](https://img.shields.io/badge/donate-ko--fi-29abe0.svg?style=for-the-badge&logo=ko-fi)](https://ko-fi.com/ptkdev) [![Donate Github Sponsors](https://img.shields.io/badge/donate-sponsors-ea4aaa.svg?style=for-the-badge&logo=github)](https://github.com/sponsors/ptkdev) [![Donate Patreon](https://img.shields.io/badge/donate-patreon-F87668.svg?style=for-the-badge&logo=patreon)](https://www.patreon.com/join/ptkdev) [![Donate Bitcoin](https://img.shields.io/badge/BTC-35jQmZCy4nsxoMM3QPFrnZePDVhdKaHMRH-E38B29.svg?style=flat-square&logo=bitcoin)](https://ptk.dev/img/icons/menu/bitcoin_wallet.png) [![Donate Ethereum](https://img.shields.io/badge/ETH-0x8b8171661bEb032828e82baBb0B5B98Ba8fBEBFc-4E8EE9.svg?style=flat-square&logo=ethereum)](https://ptk.dev/img/icons/menu/ethereum_wallet.png)
109

1110
<!-- all-shields/sponsors-badges:END -->
1211

12+
# v2.0.4 (January 14, 2022)
13+
14+
- Fix: scripts
15+
- Feature: examples
16+
- Refactor: removed console.log()
17+
1318
# v2.0.3 (January 14, 2022)
1419

1520
- Fix: vanilla import with require()

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<!-- all-shields/header-badges:START -->
44

5-
[![v2.0.4](https://img.shields.io/badge/version-v2.0.4-lightgray.svg?style=flat&logo=)](https://github.com/ptkdev-boilerplate/node-module-boilerplate/blob/main/CHANGELOG.md) [![](https://img.shields.io/npm/v/@ptkdev/node-module-boilerplate?color=CC3534&logo=npm)](https://www.npmjs.com/package/@ptkdev/node-module-boilerplate) [![License: MIT](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat&logo=license)](https://github.com/ptkdev-boilerplate/node-module-boilerplate/blob/main/LICENSE.md) [![Language: TypeScript](https://img.shields.io/badge/language-typescript-blue.svg?style=flat&logo=typescript)](https://www.typescriptlang.org/) [![ECMAScript: 2019](https://img.shields.io/badge/ES-9-F7DF1E.svg?style=flat&logo=javascript)](https://github.com/tc39/ecma262) [![Discord Server](https://discordapp.com/api/guilds/383373985666301975/embed.png)](https://discord.ptkdev.io)
5+
[![v2.0.5-beta.1](https://img.shields.io/badge/version-v2.0.5--beta.1-lightgray.svg?style=flat&logo=)](https://github.com/ptkdev-boilerplate/node-module-boilerplate/blob/main/CHANGELOG.md) [![](https://img.shields.io/npm/v/@ptkdev/node-module-boilerplate?color=CC3534&logo=npm)](https://www.npmjs.com/package/@ptkdev/node-module-boilerplate) [![License: MIT](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat&logo=license)](https://github.com/ptkdev-boilerplate/node-module-boilerplate/blob/main/LICENSE.md) [![Language: TypeScript](https://img.shields.io/badge/language-typescript-blue.svg?style=flat&logo=typescript)](https://www.typescriptlang.org/) [![ECMAScript: 2019](https://img.shields.io/badge/ES-9-F7DF1E.svg?style=flat&logo=javascript)](https://github.com/tc39/ecma262) [![Discord Server](https://discordapp.com/api/guilds/383373985666301975/embed.png)](https://discord.ptkdev.io)
66

77
<!-- all-shields/header-badges:END -->
88

app/core/run.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@
1212
import m from "@app/functions/module";
1313
import translate from "@translations/translate";
1414
import logger from "@app/utils/logger";
15+
1516
(async () => {
16-
const { app } = await m({ text: translate("hello", { name: "Boilerplate" }) });
17+
const label = translate("hello", { name: "World" }); // This show "Hello World"! Is a literal template string from en.json
18+
const { app } = await m({ text: label });
1719

1820
logger.info(app());
1921
})();

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@ptkdev/node-module-boilerplate",
33
"displayName": "Node NPM Library Boilerplate",
44
"description": "Create your npm library with this friendly boilerplate. Use this respository as template for your new node library/module",
5-
"version": "2.0.4",
5+
"version": "2.0.5-beta.1",
66
"main": "dist/functions/module.js",
77
"publishConfig": {
88
"access": "public"

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
]
3232
},
3333
"include": ["app/**/*"],
34-
"exclude": ["node_modules/*", "dist/*", "scripts/*", "examples/*"]
34+
"exclude": ["node_modules/*", "app/tests/**/*", "dist/*", "scripts/*", "examples/*"]
3535
}

0 commit comments

Comments
 (0)