Skip to content
This repository has been archived by the owner on May 16, 2023. It is now read-only.

Commit

Permalink
Merge pull request #27 from rpaschoal/1.0.3
Browse files Browse the repository at this point in the history
Merge from 1.0.3
  • Loading branch information
rpaschoal authored Jan 22, 2018
2 parents d6f8106 + 0ae52be commit f75bf4e
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ before_script:
- npm install
script:
# Initial SRC component build
- npm run linux-build
- npm run build

# Node modules clean up
- rm -r node_modules
Expand Down
2 changes: 1 addition & 1 deletion demo/aspnetcore_signalr/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"bootstrap": "^3.3.7",
"core-js": "^2.4.1",
"jquery": "3.2.1",
"ng-chat": "1.0.2",
"ng-chat": "1.0.3",
"ng2-loading-bar": "0.0.6",
"reflect-metadata": "^0.1.10",
"rxjs": "5.4.2",
Expand Down
2 changes: 1 addition & 1 deletion demo/offline_bot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"core-js": "^2.5.3",
"rxjs": "^5.5.6",
"zone.js": "^0.8.20",
"ng-chat": "1.0.2"
"ng-chat": "1.0.3"
},
"devDependencies": {
"@angular/cli": "^1.6.4",
Expand Down
10 changes: 1 addition & 9 deletions demo/offline_bot/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,5 @@
"es2017",
"dom"
]
},
"exclude": [
"**/*.spec.ts"
],
"include": [
"src/**/*",
"node_modules/ng-chat/**/*",
"test.ts"
]
}
}
29 changes: 19 additions & 10 deletions src/package.json
Original file line number Diff line number Diff line change
@@ -1,40 +1,49 @@
{
"name": "ng-chat",
"version": "1.0.1",
"version": "1.0.3",
"peerDependencies": {
"@angular/common": "*",
"@angular/core": "*",
"@angular/forms": "*",
"rxjs": "*"
},
"devDependencies": {
"@angular/common": "^4.4.6",
"@angular/core": "^4.4.6",
"@angular/forms": "^4.4.6",
"@angular/common": "^5.2.0",
"@angular/core": "^5.2.0",
"@angular/forms": "^5.2.0",
"rxjs": "^5.5.6",
"@angular/compiler": "^4.4.6",
"@angular/compiler-cli": "^4.4.6",
"@angular/compiler": "^5.2.0",
"@angular/compiler-cli": "^5.2.0",
"gulp": "3.9.1",
"gulp-inline-ng2-template": "^4.1.0",
"rollup": "^0.49.3",
"typescript": "^2.5.2",
"uglify-js": "^3.0.28"
"uglify-js": "^3.0.28",
"ng-packagr": "^1.6.0"
},
"scripts": {
"templates": "gulp inline-templates",
"transpile": "ngc",
"package": "rollup -c",
"minify": "uglifyjs dist/bundles/ng-chat.umd.js --screw-ie8 --compress --mangle --comments --output dist/bundles/ng-chat.umd.min.js",
"clean": "del /S *.ngsummary.json del /S *.ngfactory.ts",
"build": "npm run templates && npm run transpile && npm run package && npm run minify && npm run clean",
"linux-clean": "rm -f *.ngsummary.json *.ngfactory.ts",
"linux-build": "npm run templates && npm run transpile && npm run package && npm run minify && npm run linux-clean"
"linux-clean": "rm -f *.ngsummary.json *.ngfactory.ts",
"build-legacy": "npm run templates && npm run transpile && npm run package && npm run minify && npm run clean",
"linux-build-legacy": "npm run templates && npm run transpile && npm run package && npm run minify && npm run linux-clean",
"copy-readme": "copy ..\\README.md dist\\README.md",
"build": "ng-packagr -p package.json",
"build-package": "ng-packagr -p package.json && npm run copy-readme"
},
"description": "A simple facebook/linkedin lookalike chat module for Angular applications.",
"author": "Rafael Carvalho",
"license": "MIT",
"homepage": "https://github.com/rpaschoal/ng-chat",
"bugs": {
"url": "https://github.com/rpaschoal/ng-chat/issues"
},
"ngPackage": {
"lib": {
"entryFile": "index.ts"
}
}
}

0 comments on commit f75bf4e

Please sign in to comment.