no .npmignore file
This commit is contained in:
Родитель
39c7ff3962
Коммит
82bbd0933e
31
.npmignore
31
.npmignore
|
@ -1,31 +0,0 @@
|
|||
# Node #
|
||||
node_modules
|
||||
|
||||
# vs code #
|
||||
.vscode/
|
||||
|
||||
# Git #
|
||||
.git*
|
||||
|
||||
# Tests #
|
||||
test/
|
||||
tests/
|
||||
dist/test/
|
||||
|
||||
# Tools and dev scripts #
|
||||
tools/
|
||||
tasks/
|
||||
scripts/
|
||||
gruntfile.js
|
||||
gulpfile.js
|
||||
gulpFile.js
|
||||
|
||||
# Nuget packages #
|
||||
.nuget/
|
||||
packages/
|
||||
packages.config
|
||||
|
||||
# VS #
|
||||
.ntvs_analysis.*
|
||||
*.sln
|
||||
|
12
package.json
12
package.json
|
@ -56,11 +56,17 @@
|
|||
"bugs": {
|
||||
"url": "http://github.com/azure/oav/issues"
|
||||
},
|
||||
"main": "./index.js",
|
||||
"main": "./dist/index.js",
|
||||
"bin": {
|
||||
"oav": "./cli.js"
|
||||
"oav": "./dist/cli.js"
|
||||
},
|
||||
"types": "**/*.d.ts",
|
||||
"files": [
|
||||
"dist/*.js",
|
||||
"dist/*.d.ts",
|
||||
"dist/lib/**/*.js",
|
||||
"dist/lib/**/*.d.ts"
|
||||
],
|
||||
"types": "./dist/index.d.ts",
|
||||
"scripts": {
|
||||
"test": "nyc --extension .ts --reporter lcov --reporter text mocha ./test/**/*.ts -r ts-node/register -t 10000",
|
||||
"start": "node ./lib/autorestPlugin/pluginHost.js",
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
"declaration": true, /* Generates corresponding '.d.ts' file. */
|
||||
"sourceMap": true, /* Generates corresponding '.map' file. */
|
||||
// "outFile": "./", /* Concatenate and emit output to single file. */
|
||||
// "outDir": "./dist", /* Redirect output structure to the directory. */
|
||||
"outDir": "./dist", /* Redirect output structure to the directory. */
|
||||
// "rootDir": "./", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
|
||||
// "removeComments": true, /* Do not emit comments to output. */
|
||||
// "noEmit": true, /* Do not emit outputs. */
|
||||
|
|
Загрузка…
Ссылка в новой задаче