-
-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Word generation now defaults to generating 3 syllables #230
Conversation
package.json
Outdated
@@ -48,6 +48,7 @@ | |||
"babel-plugin-transform-exponentiation-operator": "6.24.1", | |||
"babel-preset-es2015-node": "6.1.1", | |||
"babel-preset-es2015-rollup": "3.0.0", | |||
"babel-preset-stage-3": "^6.24.1", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this should be an exact version. i must not have an .npmrc
file that specifies that. mind adding one as part of this PR?
Well shoot. Will have to dig in a bit it looks like. The line this is failing on now is the line where I used destructuring. |
Happy to help take a look when i get in if you haven't already sorted it out. Without looking at the build output again, the one thing I'd check is if the babel preset was applied to the rollup config. |
Previously issues were being caused by times when keys were being generated as `id` for example. This caused issues when wanting to do things like `{[any.word()]: any.string(), id: any.simpleObject()}` as the desired 'id' key would get stomped.
No description provided.