luvit / lit

Toolkit for developing, sharing, and running luvit/lua programs and libraries.
http://lit.luvit.io/
Apache License 2.0
245 stars 58 forks source link

lit init formats package.lua wrong. #133

Closed bakpakin closed 8 years ago

bakpakin commented 8 years ago

Here is a test package.lua generated with lit init:

return {
  name = "Rum",
  version = "0.0.1",
  description = "Simple Chatroom.",
  tags = { "lua", "lit", "luvit" },
  license = "bakpakin",
  author = { name = "calsrose@gmail.com", email = "MIT" },
  homepage = "https://github.com/Rum",
  dependencies = {},
  files = {
    "**.lua",
    "!test*"
  }
}

Notice the author table makes no sense and the license is incorrect.

lit version: 2.2.13 luvi version: v2.3.5

creationix commented 8 years ago

Update to lit v2.2.14 to get the fix.