Skip to content
This repository was archived by the owner on Dec 4, 2017. It is now read-only.
Open
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
76c99e9
docs(cb-third-party-lib) create a third party lib
thelgevold Oct 16, 2016
38a9000
addressing PR review items
thelgevold Nov 7, 2016
21bc5eb
minor copy-edits
filipesilva Feb 28, 2017
e1423e7
update example
filipesilva Mar 2, 2017
9435b65
add intro, download
filipesilva Mar 22, 2017
1f24d04
add core file descriptions
filipesilva Mar 22, 2017
ed14ce0
add entry points and build step
filipesilva Mar 22, 2017
423e6f5
add testing
filipesilva Mar 22, 2017
a73370f
add publishing
filipesilva Mar 22, 2017
4fce4b8
add AOT and JIT appendix
filipesilva Mar 22, 2017
8657312
remove old example
filipesilva Mar 22, 2017
9bbc128
whitespace
filipesilva Mar 22, 2017
274a207
add v4 message
filipesilva Mar 22, 2017
0f65921
add dep management
filipesilva Mar 22, 2017
e2e7738
whitespace
filipesilva Mar 22, 2017
aef571f
add externals/globals note
filipesilva Mar 22, 2017
5bf5337
fix headers
filipesilva Mar 22, 2017
3ef8d45
add example
filipesilva Mar 22, 2017
d38aedc
remove unused changes
filipesilva Mar 22, 2017
2e9bfbd
spelling
filipesilva Mar 23, 2017
97a7df0
line breaks
filipesilva Mar 23, 2017
24455bc
emphasize package format over starter
filipesilva Mar 23, 2017
d0f6209
put aot first
filipesilva Mar 23, 2017
50cbb91
add note about customization
filipesilva Mar 23, 2017
59a80e0
add preliminary folder structure
filipesilva Mar 23, 2017
c5e7de3
update folder struture
filipesilva Mar 23, 2017
e9e8898
add a couple more points to library maintenance
filipesilva Mar 23, 2017
9961bdc
rename a file
filipesilva Mar 23, 2017
c121cb3
add sourcemaps note
filipesilva Mar 23, 2017
31b1f50
add consumer table
filipesilva Mar 23, 2017
f801cfd
update layout, add checklist
filipesilva Mar 27, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add a couple more points to library maintenance
  • Loading branch information
filipesilva committed Mar 27, 2017
commit e9e8898b5ed4edabe26a09e32de9dd6d51739850
13 changes: 9 additions & 4 deletions public/docs/ts/latest/cookbook/third-party-lib.jade
Original file line number Diff line number Diff line change
Expand Up @@ -368,11 +368,16 @@ table(width="100%")
:marked
### Be a good library maintainer

Remember to document your library,
[manage your dependencies properly](appendix-dependency-management),
follow [Semantic Versioning](http://semver.org/) and
setup a Continuous Integration solution to test your library (included is a `travis.yml`
Now that you've published a library, you need to maintain it as well.
Below are some of the most important points:

- Keep an eye on the issue tracker.
- Document your library.
- [Manage your dependencies properly](appendix-dependency-management)
- Follow [Semantic Versioning](http://semver.org/)
- Setup a Continuous Integration solution to test your library (included is a `travis.yml`
file for [Travis CI](https://docs.travis-ci.com/user/getting-started/))!
- Choose an [appropriate license](https://choosealicense.com/).


.l-main-section
Expand Down