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
{{ message }}
This repository was archived by the owner on Jun 25, 2019. It is now read-only.
This seed follows the [Angular Style Guide](https://angular.io/docs/ts/latest/guide/style-guide.html).
17
22
@@ -21,30 +26,50 @@ This seed follows the [Angular Style Guide](https://angular.io/docs/ts/latest/gu
21
26
22
27
```bash
23
28
npm install
29
+
# or
30
+
yarn
24
31
```
25
32
26
-
### Run development server
33
+
### Development server
27
34
28
35
Use the following command to start a local development server which will display the application at [http://localhost:3000](http://localhost:3000).
29
36
30
37
```bash
31
38
npm start
39
+
# or
40
+
yarn start
32
41
```
33
42
34
-
### Run tests
43
+
### Test your code
35
44
36
45
The following command will run your unit tests with [Karma](https://karma-runner.github.io).
37
46
38
47
```bash
39
48
npm test
49
+
# or
50
+
yarn test
51
+
```
52
+
53
+
### Analyze your code with TSLint
54
+
55
+
Run [TSLint](https://github.com/palantir/tslint) with rules based on the [Angular Style Guide](https://angular.io/docs/ts/latest/guide/style-guide.html) with this command.
56
+
57
+
```bash
58
+
npm run lint
59
+
# or
60
+
yarn lint
40
61
```
41
62
42
63
### Build for production
43
64
44
65
Production files are located in `dist`.
45
66
67
+
This project uses [Ahead-of-Time Compilation](https://angular.io/guide/aot-compiler) and [Tree Shaking](https://webpack.js.org/guides/tree-shaking) for much smaller production files. Files over a threshold of 1KB are also gzipped, which results in approximately 150KB for all JS/HTML/CSS in this project.
0 commit comments