Use .npmignore instead of files list

This commit is contained in:
Scott Southwood 2014-08-11 18:19:12 -07:00
Родитель c673b167a4
Коммит ce3ed12d5e
2 изменённых файлов: 14 добавлений и 14 удалений

14
.npmignore Normal file
Просмотреть файл

@ -0,0 +1,14 @@
# Ignore ts source
*.ts
# Ignore map files
*.js.map
# Ignore built files
obj
*.tgz
# Ignore Visual Studio files
*.suo
*.sln
*.njsproj

Просмотреть файл

@ -11,20 +11,6 @@
{ "name": "t-andrea", "email": "t-andrea@microsoft.com" },
{ "name": "scsouthw", "email": "scsouthw@microsoft.com" }
],
"files": [
"config.json",
"README.md",
"License.txt",
"install.js",
"appInsights.js",
"Util.js",
"NodeSender.js",
"Context/ApplicationContext.js",
"Context/DeviceContext.js",
"Context/LocationContext.js",
"Context/UserContext.js",
"Context/SessionContext.js"
],
"scripts": {
"postinstall": "node install.js"
},