New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

generator-ngx-app

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

generator-ngx-app - npm Package Compare versions

Comparing version 1.1.0 to 1.2.0

22

CHANGELOG.md
# Change Log
## [1.1.0](https://github.com/angular-starter-kit/generator-ngx-app/tree/1.1.0) (2017-03-16)
[Full Changelog](https://github.com/angular-starter-kit/generator-ngx-app/compare/1.0.1...1.1.0)
**Enhancements**:
- Allow update of existing projects [\#47](https://github.com/angular-starter-kit/generator-ngx-app/issues/47) [[feature](https://github.com/angular-starter-kit/generator-ngx-app/labels/feature)]
**Fixed bugs:**
- Broken jasmine typings [\#55](https://github.com/angular-starter-kit/generator-ngx-app/issues/55)
- Page title is not translated [\#51](https://github.com/angular-starter-kit/generator-ngx-app/issues/51)
**Closed issues:**
- Add project changelog [\#50](https://github.com/angular-starter-kit/generator-ngx-app/issues/50)
**Merged pull requests:**
- Feature/auth [\#54](https://github.com/angular-starter-kit/generator-ngx-app/pull/54)
- Feature/update [\#53](https://github.com/angular-starter-kit/generator-ngx-app/pull/53)
- Feature/updating [\#48](https://github.com/angular-starter-kit/generator-ngx-app/pull/48)
## [1.0.1](https://github.com/angular-starter-kit/generator-ngx-app/tree/1.0.1) (2017-03-06)

@@ -4,0 +26,0 @@ [Full Changelog](https://github.com/angular-starter-kit/generator-ngx-app/compare/1.0.0...1.0.1)

26

generators/app/templates/_package.json

@@ -19,10 +19,10 @@ {

"dependencies": {
"@angular/common": "^2.4.0",
"@angular/compiler": "^2.4.0",
"@angular/core": "^2.4.0",
"@angular/forms": "^2.4.0",
"@angular/http": "^2.4.0",
"@angular/platform-browser": "^2.4.0",
"@angular/platform-browser-dynamic": "^2.4.0",
"@angular/router": "^3.4.0",
"@angular/common": "^4.0.0",
"@angular/compiler": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/forms": "^4.0.0",
"@angular/http": "^4.0.0",
"@angular/platform-browser": "^4.0.0",
"@angular/platform-browser-dynamic": "^4.0.0",
"@angular/router": "^4.0.0",
"@ng-bootstrap/ng-bootstrap": "^1.0.0-alpha.20",

@@ -35,7 +35,7 @@ "@ngx-translate/core": "^6.0.0",

"rxjs": "^5.1.0",
"zone.js": "^0.7.6"
"zone.js": "^0.8.4"
},
"devDependencies": {
"@angular/cli": "^1.0.0-rc.2",
"@angular/compiler-cli": "^2.4.0",
"@angular/cli": "^1.0.0",
"@angular/compiler-cli": "^4.0.0",
"@biesbjerg/ng2-translate-extract": "^0.6.0",

@@ -54,3 +54,3 @@ "@types/jasmine": "2.5.45",

"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^0.3.0",
"karma-coverage-istanbul-reporter": "^1.0.0",
"karma-jasmine": "^1.1.0",

@@ -63,3 +63,3 @@ "karma-junit-reporter": "^1.2.0",

"stylelint-config-standard": "^16.0.0",
"ts-node": "~2.1.0",
"ts-node": "~3.0.2",
"tslint": "~4.5.1",

@@ -66,0 +66,0 @@ "typescript": "~2.2.1"

@@ -84,6 +84,4 @@ # <%= props.appName %>

# Current status
# What's in the box
## What's in the box
The app template is based on [HTML5](http://whatwg.org/html), [TypeScript](http://www.typescriptlang.org) and

@@ -90,0 +88,0 @@ [Sass](http://sass-lang.com). The translation files use the common [JSON](http://www.json.org) format.

@@ -13,5 +13,5 @@ # TypeScript coding guide

- Use `PascalCase` for type, classes, interfaces, constants and enum values.
- Use `PascalCase` for types, classes, interfaces, constants and enum values.
- Use `camelCase` for variables, properties and functions
- Avoid prefixing interface with a capital `I`, see [Angular style guide](https://angular.io/styleguide#!#03-03)
- Avoid prefixing interfaces with a capital `I`, see [Angular style guide](https://angular.io/styleguide#!#03-03)
- Do not use `_` as a prefix for private properties. An exception can be made for backing fields like this:

@@ -18,0 +18,0 @@ ```typescript

{
"extends": "../tsconfig.json",
"compilerOptions": {
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [
"es2016"
],
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true,
"outDir": "../out-tsc/e2e",

@@ -14,0 +5,0 @@ "module": "commonjs",

{
"extends": "../tsconfig.json",
"compilerOptions": {
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [
"es2016",
"dom"
],
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true,
"outDir": "../out-tsc/app",
"target": "es5",
"module": "es2015",

@@ -17,0 +6,0 @@ "baseUrl": "",

{
"extends": "../tsconfig.json",
"compilerOptions": {
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [
"es2016",
"dom"
],
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true,
"outDir": "../out-tsc/spec",

@@ -28,4 +18,5 @@ "module": "commonjs",

"**/*.spec.ts",
"**/*.mock.ts"
"**/*.mock.ts",
"**/*.d.ts"
]
}

@@ -11,2 +11,2 @@ /*

id: string;
};
};

@@ -11,6 +11,2 @@ {

"experimentalDecorators": true,
"lib": [
"es2016",
"dom"
],
"noImplicitAny": true,

@@ -21,4 +17,8 @@ "suppressImplicitAnyIndexErrors": true,

"node_modules/@types"
],
"lib": [
"es2016",
"dom"
]
}
}
{
"name": "generator-ngx-app",
"version": "1.1.0",
"version": "1.2.0",
"description": "Angular 2+ enterprise-grade project generator based on angular-cli with best practices from the community, a scalable starter template and a good learning base.",

@@ -5,0 +5,0 @@ "repository": "angular-starter-kit/generator-ngx-app",

@@ -96,3 +96,3 @@ # generator-ngx-app

## What's in the box
# What's in the box

@@ -120,3 +120,3 @@ The app template is based on [HTML5](http://whatwg.org/html), [TypeScript](http://www.typescriptlang.org) and

- [Angular 2](https://angular.io)
- [Angular 4](https://angular.io)
- [Bootstrap 4](https://v4-alpha.getbootstrap.com)

@@ -123,0 +123,0 @@ - [Font Awesome](http://fontawesome.io)

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc