You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/ISSUE_TEMPLATE.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
**Note: for support questions, please use one of these channels:**[Chat: AngularClass.slack](http://angularclass.com/member-join/) or [Twitter: @AngularClass](https://twitter.com/AngularClass)
1
+
**Note: for support questions, please use one of these channels:**[Chat: AngularClass.slack](http://angularclass.com/member-join/) or [Twitter: @TipeIO](https://twitter.com/TipeIO)
2
2
3
3
***I'm submitting a ...**
4
4
[] bug report
@@ -28,7 +28,7 @@ https://plnkr.co or similar (you can use this template as a starting point: http
28
28
29
29
***Please tell us about your environment:**
30
30
31
-
- Angular version: 2.0.0-beta.X
31
+
- Angular version: 4.x.x
32
32
- Browser: [all | Chrome XX | Firefox XX | IE XX | Safari XX | Mobile Chrome XX | Android X.X Web Browser | iOS XX Safari | iOS XX UIWebView | iOS XX WKWebView ]
# Angular Webpack Starter [](https://gitter.im/gdi2290/angular-starter?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
22
+
# Angular Webpack Starter [](https://gitter.im/angularclass/angular2-webpack-starter?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
23
23
24
24
25
25
> An Angular starter kit featuring [Angular 5](https://angular.io), [Ahead of Time Compile](https://angular.io/docs/ts/latest/cookbook/aot-compiler.html), [Router](https://angular.io/docs/ts/latest/guide/router.html), [Forms](https://angular.io/docs/ts/latest/guide/forms.html),
[Tests](https://angular.io/docs/ts/latest/guide/testing.html), [E2E](https://angular.github.io/protractor/#/faq#what-s-the-difference-between-karma-and-protractor-when-do-i-use-which-)), [Karma](https://karma-runner.github.io/), [Protractor](https://angular.github.io/protractor/), [Jasmine](https://github.com/jasmine/jasmine), [Istanbul](https://github.com/gotwarlost/istanbul), [TypeScript](http://www.typescriptlang.org/), [@types](https://www.npmjs.com/~types), [TsLint](http://palantir.github.io/tslint/), [Codelyzer](https://github.com/mgechev/codelyzer), [Hot Module Replacement](https://webpack.github.io/docs/hot-module-replacement-with-webpack.html), and [Webpack](http://webpack.github.io/) by [AngularClass](https://angularclass.com).
28
+
[Tests](https://angular.io/docs/ts/latest/guide/testing.html), [E2E](https://angular.github.io/protractor/#/faq#what-s-the-difference-between-karma-and-protractor-when-do-i-use-which-)), [Karma](https://karma-runner.github.io/), [Protractor](https://angular.github.io/protractor/), [Jasmine](https://github.com/jasmine/jasmine), [Istanbul](https://github.com/gotwarlost/istanbul), [TypeScript](http://www.typescriptlang.org/), [@types](https://www.npmjs.com/~types), [TsLint](http://palantir.github.io/tslint/), [Codelyzer](https://github.com/mgechev/codelyzer), [Hot Module Replacement](https://webpack.github.io/docs/hot-module-replacement-with-webpack.html), and [Webpack](http://webpack.github.io/) by [Tipe](https://tipe.io).
29
29
30
-
> If you're looking for Angular 1.x please use [NG6-starter](https://github.com/angularclass/NG6-starter)
30
+
> If you're looking for Angular 1.x please use [NG6-starter](https://github.com/gdi2290/NG6-starter)
31
31
> If you're looking to learn about Webpack and ES6 Build Tools check out [ES6-build-tools](https://github.com/AngularClass/ES6-build-tools)
32
32
> If you're looking to learn TypeScript see [TypeStrong/learn-typescript](https://github.com/TypeStrong/learn-typescript)
33
-
> If you're looking for something easier to get started with then see the angular-seed that I also maintain [AngularClass/angular-seed](https://github.com/AngularClass/angular-seed)
33
+
> If you're looking for something easier to get started with then see the angular-seed that I also maintain [gdi2290/angular-seed](https://github.com/gdi2290/angular-seed)
34
34
35
35
This seed repo serves as an Angular starter for anyone looking to get up and running with Angular and TypeScript fast. Using a [Webpack 3](https://webpack.js.org) for building our files and assisting with boilerplate. We're also using Protractor for our end-to-end story and Karma for our unit tests.
36
36
* Best practices in file and application organization for Angular.
@@ -44,7 +44,7 @@ This seed repo serves as an Angular starter for anyone looking to get up and run
44
44
* Coverage with Istanbul and Karma
45
45
* End-to-end Angular app testing using Protractor.
46
46
* Type manager with @types
47
-
* Hot Module Replacement with Webpack and [@angularclass/hmr](https://github.com/angularclass/angular-hmr) and [@angularclass/hmr-loader](https://github.com/angularclass/angular-hmr-loader)
47
+
* Hot Module Replacement with Webpack and [@gdi2290/hmr](https://github.com/gdi2290/angular-hmr) and [@gdi2290/hmr-loader](https://github.com/gdi2290/angular-hmr-loader)
48
48
49
49
### Quick start
50
50
**Make sure you have Node version >= 6.0 and NPM >= 3**
@@ -53,7 +53,7 @@ This seed repo serves as an Angular starter for anyone looking to get up and run
53
53
```bash
54
54
# clone our repo
55
55
# --depth 1 removes all but one .git commit history
@@ -322,27 +322,27 @@ import * as _ from 'lodash';
322
322
323
323
# Frequently asked questions
324
324
* What's the current browser support for Angular?
325
-
* Please view the updated list of [browser support for Angular 2](https://github.com/angularclass/awesome-angular2#current-browser-support-for-angular-2)
325
+
* Please view the updated list of [browser support for Angular](https://github.com/gdi2290/awesome-angular#current-browser-support-for-angular)
326
326
* Why is my service, aka provider, is not injecting parameter correctly?
327
327
* Please use `@Injectable()` for your service for typescript to correctly attach the metadata (this is a TypeScript problem)
328
328
* Where do I write my tests?
329
329
* You can write your tests next to your component files. See [`/src/app/home/home.component.spec.ts`](/src/app/home/home.component.spec.ts)
330
330
* How do I start the app when I get `EACCES` and `EADDRINUSE` errors?
331
331
* The `EADDRINUSE` error means the port `3000` is currently being used and `EACCES` is lack of permission for webpack to build files to `./dist/`
332
332
* How to use `sass` for css?
333
-
**`loaders: ['raw-loader','sass-loader']` and `@Component({ styleUrls: ['./filename.scss'] })` see Wiki page [How to include SCSS in components](https://github.com/AngularClass/angular-starter/wiki/How-to-include-SCSS-in-components), or issue [#136](https://github.com/AngularClass/angular-starter/issues/136) for more information.
333
+
**`loaders: ['raw-loader','sass-loader']` and `@Component({ styleUrls: ['./filename.scss'] })` see Wiki page [How to include SCSS in components](https://github.com/gdi2290/angular-starter/wiki/How-to-include-SCSS-in-components), or issue [#136](https://github.com/gdi2290/angular-starter/issues/136) for more information.
334
334
* How do I test a Service?
335
-
* See issue [#130](https://github.com/AngularClass/angular-starter/issues/130#issuecomment-158872648)
335
+
* See issue [#130](https://github.com/gdi2290/angular-starter/issues/130#issuecomment-158872648)
336
336
* How do I add `vscode-chrome-debug` support?
337
-
* The VS Code chrome debug extension support can be done via `launch.json` see issue [#144](https://github.com/AngularClass/angular-starter/issues/144#issuecomment-164063790)
337
+
* The VS Code chrome debug extension support can be done via `launch.json` see issue [#144](https://github.com/gdi2290/angular-starter/issues/144#issuecomment-164063790)
338
338
* How do I make the repo work in a virtual machine?
339
-
* You need to use `0.0.0.0` so revert these changes [#205](https://github.com/AngularClass/angular-starter/pull/205/files)
339
+
* You need to use `0.0.0.0` so revert these changes [#205](https://github.com/gdi2290/angular-starter/pull/205/files)
340
340
* What are the naming conventions for Angular?
341
-
* please see issue [#185](https://github.com/AngularClass/angular-starter/issues/185) and PR [196](https://github.com/AngularClass/angular-starter/pull/196)
341
+
* please see issue [#185](https://github.com/gdi2290/angular-starter/issues/185) and PR [196](https://github.com/gdi2290/angular-starter/pull/196)
342
342
* How do I include bootstrap or jQuery?
343
-
* please see issue [#215](https://github.com/AngularClass/angular-starter/issues/215) and [#214](https://github.com/AngularClass/angular-starter/issues/214#event-511768416)
343
+
* please see issue [#215](https://github.com/gdi2290/angular-starter/issues/215) and [#214](https://github.com/gdi2290/angular-starter/issues/214#event-511768416)
344
344
* How do I async load a component?
345
-
* see wiki [How-do-I-async-load-a-component-with-AsyncRoute](https://github.com/AngularClass/angular-starter/wiki/How-do-I-async-load-a-component-with-AsyncRoute)
345
+
* see wiki [How-do-I-async-load-a-component-with-AsyncRoute](https://github.com/gdi2290/angular-starter/wiki/How-do-I-async-load-a-component-with-AsyncRoute)
346
346
* Error: Cannot find module 'tapable'
347
347
* Remove `node_modules/` and run `npm cache clean` then `npm install`
348
348
* How do I turn on Hot Module Replacement
@@ -355,17 +355,16 @@ import * as _ from 'lodash';
355
355
* check out https://github.com/cnpm/cnpm
356
356
* node-pre-gyp ERR in npm install (Windows)
357
357
* often happens when you're behind proxy and proxy wasn't configured in the npm as it tries to download binary package from the github and if it fails to do so, it will try to compile node-sass from the source codes
358
-
* install Python x86 version 2.x and on windows see issue [#626](https://github.com/AngularClass/angular-starter/issues/626)
358
+
* install Python x86 version 2.x and on windows see issue [#626](https://github.com/gdi2290/angular-starter/issues/626)
* remove `node_modules/typescript` and run `npm install typescript@beta`. This repo now uses ts 2.0
361
361
* "There are multiple modules with names that only differ in casing"
362
-
* change `c:\[path to angular-starter]` to `C:\[path to angular-starter]` see [926#issuecomment-245223547](https://github.com/AngularClass/angular-starter/issues/926#issuecomment-245223547)
362
+
* change `c:\[path to angular-starter]` to `C:\[path to angular-starter]` see [926#issuecomment-245223547](https://github.com/gdi2290/angular-starter/issues/926#issuecomment-245223547)
363
363
364
364
# Support, Questions, or Feedback
365
365
> Contact us anytime for anything about this repo or Angular
0 commit comments