diff --git a/.npmignore b/.npmignore index 615b796..f912249 100644 --- a/.npmignore +++ b/.npmignore @@ -1,21 +1,15 @@ - #ignore all /* -# add lib output -!/lib/** -# remove lib maps -/lib/**/*.map !/docker/** - -# root js files -!/*.js -!/*.d.ts +!/common/** +!/browser/** +!/server/** +!/index.* # root docs -!/README.md -!/CHANGELOG.md +#!/README.md +#!/CHANGELOG.md # root config !/.env.example -!/typings.json diff --git a/package.json b/package.json index 73f503b..f9326d8 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "@angular/router": "3.0.0-beta.2", "@angular/router-deprecated": "2.0.0-rc.2", "@angular/upgrade": "2.0.0-rc.4", - "@ubiquits/core": "^0.8.0", + "@ubiquits/core": "^0.8.3", "chalk": "^1.1.3", "dotenv": "^2.0.0", "lodash": "^4.12.0", @@ -38,7 +38,7 @@ "@types/hapi": "^13.0.28" }, "devDependencies": { - "@ubiquits/toolchain": "^0.2.0" + "@ubiquits/toolchain": "^0.2.3" }, "scripts": { "start": "u", diff --git a/tsconfig.all.json b/tsconfig.all.json index fc10351..00c1d8a 100644 --- a/tsconfig.all.json +++ b/tsconfig.all.json @@ -12,6 +12,7 @@ "declaration": true, "outDir": "lib", "sourceRoot": "src", + "skipLibCheck": true, "types": [ "node", "jasmine", diff --git a/tsconfig.browser.json b/tsconfig.browser.json index 1200e09..17515dc 100644 --- a/tsconfig.browser.json +++ b/tsconfig.browser.json @@ -11,6 +11,7 @@ "suppressImplicitAnyIndexErrors": true, "sourceRoot": "src", "outDir": "dist/browser", + "skipLibCheck": true, "types": [ "jasmine" ] diff --git a/tsconfig.json b/tsconfig.json deleted file mode 100644 index aba5105..0000000 --- a/tsconfig.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "compilerOptions": { - "target": "es6", - "module": "commonjs", - "moduleResolution": "node", - "sourceMap": true, - "emitDecoratorMetadata": true, - "experimentalDecorators": true, - "removeComments": false, - "noImplicitAny": true, - "suppressImplicitAnyIndexErrors": true, - "declaration": true - }, - "exclude": [ - "node_modules", - "lib", - "dist", - "index.ts", - "index.d.ts", - "server.ts", - "server.d.ts", - "browser.ts", - "browser.d.ts", - "common.ts", - "common.d.ts" - ] -} diff --git a/tsconfig.server.json b/tsconfig.server.json index 47c3af0..fb7254e 100644 --- a/tsconfig.server.json +++ b/tsconfig.server.json @@ -13,6 +13,7 @@ "outDir": "dist/server", "sourceRoot": "src", "inlineSources": true, + "skipLibCheck": true, "types": [ "node", "jasmine",