Skip to content

Commit 67c2138

Browse files
author
Robert Jackson
authored
Add some missing fields to package.json. (#123)
Add some missing fields to package.json.
2 parents 904d571 + fad7670 commit 67c2138

File tree

4 files changed

+554
-191
lines changed

4 files changed

+554
-191
lines changed

CHANGELOG.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,26 @@
1-
Could not infer "repo" from the "package.json" file.
1+
## v0.2.0 (2019-06-18)
2+
3+
#### :boom: Breaking Change
4+
* [#118](https://github.com/ember-codemods/ember-es6-class-codemod/pull/118) [FEATURE] Replace dyfactor with puppeteer ([@pzuraq](https://github.com/pzuraq))
5+
6+
#### :rocket: Enhancement
7+
* [#118](https://github.com/ember-codemods/ember-es6-class-codemod/pull/118) [FEATURE] Replace dyfactor with puppeteer ([@pzuraq](https://github.com/pzuraq))
8+
* [#112](https://github.com/ember-codemods/ember-es6-class-codemod/pull/112) Update to use official decorators from Ember as much as possible ([@ssutar](https://github.com/ssutar))
9+
* [#89](https://github.com/ember-codemods/ember-es6-class-codemod/pull/89) Import @service and @controller from @ember packages ([@ssutar](https://github.com/ssutar))
10+
11+
#### :bug: Bug Fix
12+
* [#116](https://github.com/ember-codemods/ember-es6-class-codemod/pull/116) Merge imports from the same module ([@ssutar](https://github.com/ssutar))
13+
* [#94](https://github.com/ember-codemods/ember-es6-class-codemod/pull/94) Add automatic detection of an infinite `@action` loop ([@ssutar](https://github.com/ssutar))
14+
15+
#### :memo: Documentation
16+
* [#121](https://github.com/ember-codemods/ember-es6-class-codemod/pull/121) Update README.md to match recent changes. ([@rwjblue](https://github.com/rwjblue))
17+
18+
#### :house: Internal
19+
* [#122](https://github.com/ember-codemods/ember-es6-class-codemod/pull/122) Add automated release setup and documentation. ([@rwjblue](https://github.com/rwjblue))
20+
21+
#### Committers: 4
22+
- Chris Garrett ([@pzuraq](https://github.com/pzuraq))
23+
- Robert Jackson ([@rwjblue](https://github.com/rwjblue))
24+
- Santosh Sutar ([@ssutar](https://github.com/ssutar))
25+
- [@dependabot-preview[bot]](https://github.com/apps/dependabot-preview)
226

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,10 +102,9 @@ While the codemods transforms all types of ember objects, it does not support tr
102102
## More Transform Examples
103103

104104
<!--TRANSFORMS_START-->
105-
106-
- [ember-object](transforms/ember-object/README.md)
107-
- [helpers](transforms/helpers/README.md)
108-
<!--TRANSFORMS_END-->
105+
* [ember-object](transforms/ember-object/README.md)
106+
* [helpers](transforms/helpers/README.md)
107+
<!--TRANSFORMS_END-->
109108

110109
## Contributing
111110

package.json

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,34 @@
11
{
22
"name": "ember-es6-class-codemod",
33
"version": "0.2.0",
4+
"description": "Codemods for transforming ember app code to native ES6 class syntax with decorators.",
45
"keywords": [
56
"codemod-cli"
67
],
8+
"homepage": "https://github.com/ember-codemods/ember-es6-class-codemod#readme",
9+
"bugs": {
10+
"url": "https://github.com/ember-codemods/ember-es6-class-codemod/issues"
11+
},
12+
"repository": {
13+
"type": "git",
14+
"url": "git+https://github.com/ember-codemods/ember-es6-class-codemod.git"
15+
},
716
"license": "MIT",
17+
"author": "",
818
"files": [
919
"/bin",
1020
"/lib",
1121
"/transforms/helpers",
1222
"/transforms/ember-object/index.js"
1323
],
14-
"bin": "./bin/cli.js",
24+
"main": ".eslintrc.js",
25+
"bin": {
26+
"ember-es6-class-codemod": "./bin/cli.js"
27+
},
28+
"directories": {
29+
"lib": "lib",
30+
"test": "test"
31+
},
1532
"scripts": {
1633
"release": "release-it",
1734
"test": "eslint . && codemod-cli test && node ./test/run-test.js",

0 commit comments

Comments
 (0)