Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
setup nativescript-angular folder to be packable
  • Loading branch information
vakrilov committed May 31, 2016
commit da1be1b7ab076a43f1ef9658b7919b5b7a632d8f
13 changes: 8 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
nativescript-angular*.tgz
bin/dist
node_modules
tags
src/nativescript-angular/**/*.js
!src/nativescript-angular/postinstall.js
!src/nativescript-angular/hooks/**/*.js
.baseDir.ts
**/*.js.map

nativescript-angular/**/*.d.ts
!nativescript-angular/global.d.ts
nativescript-angular/**/*.js
!nativescript-angular/postinstall.js
!nativescript-angular/hooks/**/*.js

.tscache
.nvm
.vscode
Expand Down
8 changes: 8 additions & 0 deletions nativescript-angular/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
*.tgz

*.ts
!*.d.ts

tsconfig.json
global.d.ts
.npmignore
File renamed without changes.
File renamed without changes.
51 changes: 51 additions & 0 deletions nativescript-angular/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
"name": "nativescript-angular",
"version": "0.1.6",
"description": "An Angular 2 renderer that lets you build mobile apps with NativeScript.",
"homepage": "http://www.telerik.com",
"bugs": "http://www.telerik.com",
"contributors": [
"Hristo Deshev <hristo.deshev@telerik.com>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/NativeScript/nativescript-angular.git"
},
"scripts": {
"postinstall": "node postinstall.js",
"prepublish": "tsc"
},
"dependencies": {
"nativescript-intl": "^0.0.2",
"@angular/common": "2.0.0-rc.1",
"@angular/compiler": "2.0.0-rc.1",
"@angular/core": "2.0.0-rc.1",
"@angular/router-deprecated": "2.0.0-rc.1",
"@angular/platform-browser": "2.0.0-rc.1",
"@angular/platform-browser-dynamic": "2.0.0-rc.1",
"@angular/platform-server": "2.0.0-rc.1",
"reflect-metadata": "^0.1.3",
"rxjs": "5.0.0-beta.6",
"zone.js": "^0.6.12",
"parse5": "1.4.2",
"punycode": "1.3.2",
"querystring": "0.2.0",
"url": "0.10.3"
},
"devDependencies": {
"grunt": "0.4.5",
"grunt-contrib-copy": "0.8.0",
"grunt-contrib-clean": "0.6.0",
"grunt-shell": "1.1.2",
"grunt-file": "1.0.2",
"grunt-env": "0.4.4",
"grunt-ts": "5.0.0-beta.5",
"shelljs": "^0.5.3",
"typescript": "^1.8.10"
},
"peerDependencies": {
"tns-core-modules": ">=2.0.0 || >=2.1.0-2016 || >=2.0.0-angular-7"
},
"nativescript": {}
}
File renamed without changes.
File renamed without changes.
13 changes: 13 additions & 0 deletions nativescript-angular/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"declaration": true,
"removeComments": false,
"noEmitOnError": true,
"noImplicitAny": false
}
}
File renamed without changes.
20 changes: 1 addition & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,7 @@
},
"scripts": {},
"dependencies": {
"tns-core-modules": "2.0.0-angular-7",
"nativescript-intl": "^0.0.2",
"@angular/common": "2.0.0-rc.1",
"@angular/compiler": "2.0.0-rc.1",
"@angular/core": "2.0.0-rc.1",
"@angular/router-deprecated": "2.0.0-rc.1",
"@angular/platform-browser": "2.0.0-rc.1",
"@angular/platform-browser-dynamic": "2.0.0-rc.1",
"@angular/platform-server": "2.0.0-rc.1",
"reflect-metadata": "^0.1.3",
"rxjs": "5.0.0-beta.6",
"zone.js": "^0.6.12",
"parse5": "1.4.2",
"punycode": "1.3.2",
"querystring": "0.2.0",
"url": "0.10.3"
"tns-core-modules": "2.0.0-angular-7"
},
"devDependencies": {
"grunt": "0.4.5",
Expand All @@ -42,8 +27,5 @@
"shelljs": "^0.5.3",
"typescript": "^1.8.10"
},
"peerDependencies": {
"tns-core-modules": ">=2.0.0 || >=2.1.0-2016 || >=2.0.0-angular-7"
},
"nativescript": {}
}