-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Attempt to concatenate local 'package_version' (a nil value) #991
Comments
Not having specific version numbers is normal for documentation and web sites, like the Atom Flight Manual. I'm too much of a Lua noob to fix this. Apparently neither setting a default value for if not package_version then
local package_version = "unknown"
end and if package_version == nil then
local package_version = "unknown"
end |
Not a Lua expert also, but it seams that using if package_version == nil then
package_version = '0.0.0'
end |
In fact, it seams that it is just a matter of updating the dependency: @vladimir-kotikov, we are missing bumps to 0.3.x 😆 |
Sorry, just saw it at dev branch. Nice! |
⬆️ 0.3.1 ;-) |
It assumes that every package.json file has a
version
prop, 'cause that's the default behavior ofnpm init
I guess, but this isn't true for Meteor projects.Meteor's flaw I would say, but I thought it would be nice to issue that.
Ps.: just ignore my workspace 😆
The text was updated successfully, but these errors were encountered: