Skip to content

Commit

Permalink
move src to src folder
Browse files Browse the repository at this point in the history
  • Loading branch information
Carmine DiMascio committed Mar 23, 2019
1 parent 5e0d8c5 commit e566fdc
Show file tree
Hide file tree
Showing 10 changed files with 4 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion test/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var cookieParser = require('cookie-parser');
var bodyParser = require('body-parser');
var logger = require('morgan');

const { OpenApiMiddleware } = require('../');
const { OpenApiMiddleware } = require('../src');
const { startServer, routes } = require('./app.common');

var app = express();
Expand Down
2 changes: 1 addition & 1 deletion test/app.with.transform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var cookieParser = require('cookie-parser');
var bodyParser = require('body-parser');
var logger = require('morgan');

const { OpenApiMiddleware } = require('../');
const { OpenApiMiddleware } = require('../src');
const { startServer, routes } = require('./app.common');

var app = express();
Expand Down
2 changes: 1 addition & 1 deletion test/middleware.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const expect = require('chai').expect;
const { OpenApiMiddleware } = require('../');
const { OpenApiMiddleware } = require('../src');
const packageJson = require('../package.json');

describe(packageJson.name, () => {
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"sourceMap": true
},
"exclude": ["node_modules"],
"include": ["typings.d.ts", "index.ts", "fw/**/*.ts", "errors/**/*.ts"]
"include": ["typings.d.ts", "src/**/*.ts"]
}

0 comments on commit e566fdc

Please sign in to comment.