Skip to content
This repository was archived by the owner on Mar 25, 2025. It is now read-only.

Commit 42a685e

Browse files
committed
fix: add core.js missing dep in vue handlebars template
feat: roll v1.6.5
1 parent 9dc0cd0 commit 42a685e

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.6.5] - 2021-05-26
9+
10+
### Fixed
11+
12+
- Install core.js missing dependency in vue handlebars template, which fixes [issue #104](https://github.com/paulrberg/create-eth-app/issues/104)
13+
814
## [1.6.4] - 2021-05-25
915

1016
### Fixed
@@ -170,7 +176,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
170176
- Initial release of the tool
171177
- The default template
172178

173-
[1.6.4]: https://github.com/paulrberg/create-eth-app/compare/v1.6.2...v1.6.4
179+
[1.6.5]: https://github.com/paulrberg/create-eth-app/compare/v1.6.4...v1.6.5
180+
[1.6.4]: https://github.com/paulrberg/create-eth-app/compare/v1.6.3...v1.6.4
174181
[1.6.3]: https://github.com/paulrberg/create-eth-app/compare/v1.6.2...v1.6.3
175182
[1.6.2]: https://github.com/paulrberg/create-eth-app/compare/v1.6.1...v1.6.2
176183
[1.6.1]: https://github.com/paulrberg/create-eth-app/compare/v1.5.0...v1.6.1

handlebars/vue/packages/vue-app/package.json.hbs

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"apollo-link-http": "^1.5.17",
2323
"babel-eslint": "^10.1.0",
2424
"chalk": "^4.1.0",
25+
"core-js": "^3.13.0",
2526
"eslint": "^6.8.0",
2627
"eslint-plugin-vue": "^6.2.2",
2728
"graphql": "^15.3.0",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "create-eth-app",
33
"description": "Create Ethereum-powered apps with one command",
4-
"version": "1.6.4",
4+
"version": "1.6.5",
55
"bin": {
66
"create-eth-app": "./dist/index.js"
77
},

0 commit comments

Comments
 (0)