Explorar el Código

Specifying files in package.json

Good npm citizens should specify which files a npm module consists of
so module users dont have to download all the unnecessary things.
tags/v1.2.0
Phillip Johnsen hace 11 años
padre
commit
a03e6930b0
Se han modificado 2 ficheros con 7 adiciones y 2 borrados
  1. +0
    -2
      .npmignore
  2. +7
    -0
      package.json

+ 0
- 2
.npmignore Ver fichero

@@ -1,2 +0,0 @@
test


+ 7
- 0
package.json Ver fichero

@@ -17,6 +17,13 @@
"bin": { "bin": {
"mustache": "./bin/mustache" "mustache": "./bin/mustache"
}, },
"files": [
"mustache.js",
"mustache.min.js",
"bin",
"wrappers",
"LICENSE"
],
"volo": { "volo": {
"url": "https://raw.github.com/janl/mustache.js/{version}/mustache.js" "url": "https://raw.github.com/janl/mustache.js/{version}/mustache.js"
}, },


Cargando…
Cancelar
Guardar