Skip to content
This repository was archived by the owner on Feb 23, 2023. It is now read-only.

Commit 6b478b0

Browse files
committed
build: bundle app using ng-packagr
1 parent 5752b5f commit 6b478b0

17 files changed

+31
-3910
lines changed

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,4 @@ src/**/*.ngsummary.json
99
src/**/*.d.ts
1010
.vscode
1111
coverage
12-
bundles
13-
esm
12+
package-lock.json

.npmignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
language: node_js
22
node_js:
3-
- 6
3+
- 7
4+
- 8
5+
- 9
46

57
cache:
68
yarn: true

CONTRIBUTING.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,6 @@ $ npm test
3535
The `npm test` command gives you a test coverage summary in the standard output. If you wish to see a more detailed coverage report, a `html` report
3636
is produced in the `coverage` folder.
3737

38-
## Building
39-
40-
Contributing to the project does not require compiling the code into javascript. But if you want to:
41-
42-
```
43-
$ npm run prepublish
44-
```
4538

4639
## Submitting changes
4740

SUMMARY.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,6 @@
1515
* [String](docs/string.md)
1616
* [Object](docs/object.md)
1717

18-
## Build
19-
20-
* [Bundles](docs/bundles.md)
21-
* [ESM](docs/esm.md)
22-
2318
## Other
2419

2520
* [Contribute](CONTRIBUTING.md)

docs/README.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,3 @@
77
* [`Aggregate`](./aggregate.md)
88
* [`String`](./string.md)
99
* [`Object`](./object.md)
10-
11-
## Distribution
12-
13-
* [`Bundles`](./bundles.md)
14-
* [`ESM`](./esm.md)

docs/bundles.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

docs/esm.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

gulpfile.js

Lines changed: 0 additions & 19 deletions
This file was deleted.

ng-package.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"$schema": "./node_modules/ng-packagr/package.schema.json",
3+
"ngPackage": {
4+
"lib": {
5+
"entryFile": "public_api.ts"
6+
}
7+
}
8+
}

0 commit comments

Comments
 (0)