@launchdarkly/js-sdk-common 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/README.md +11 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@launchdarkly/js-sdk-common` will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
|
|
4
4
|
|
|
5
|
+
## [0.2.0](https://github.com/launchdarkly/js-core/compare/js-sdk-common-v0.1.0...js-sdk-common-v0.2.0) (2023-03-16)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* Update packaging to include only needed files. ([06b2f28](https://github.com/launchdarkly/js-core/commit/06b2f28c85ba9e8610f88cb234546403e534fa77))
|
|
11
|
+
|
|
5
12
|
## 0.1.0 (2023-03-15)
|
|
6
13
|
|
|
7
14
|
Initial prerelease version.
|
package/README.md
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
# LaunchDarkly SDK JavaScript Common Code
|
|
2
2
|
|
|
3
|
-
[![NPM]
|
|
4
|
-
![Actions Status]
|
|
5
|
-
[](
|
|
3
|
+
[![NPM][common-npm-badge]][common-npm-link]
|
|
4
|
+
[![Actions Status][shared-common-ci-badge]][shared-common-ci]
|
|
5
|
+
[](https://launchdarkly.github.io/js-core/packages/shared/common/docs/)
|
|
6
6
|
|
|
7
7
|
This project contains Typescript classes and interfaces that are applicable to client-side and server-side JavaScript SDKs.
|
|
8
8
|
|
|
9
|
+
This library is a beta version and should not be considered ready for production use while this message is visible.
|
|
10
|
+
|
|
9
11
|
## Contributing
|
|
10
12
|
|
|
11
13
|
See [Contributing](../CONTRIBUTING.md).
|
|
@@ -23,3 +25,9 @@ See [Contributing](../CONTRIBUTING.md).
|
|
|
23
25
|
- [docs.launchdarkly.com](https://docs.launchdarkly.com/ 'LaunchDarkly Documentation') for our documentation and SDK reference guides
|
|
24
26
|
- [apidocs.launchdarkly.com](https://apidocs.launchdarkly.com/ 'LaunchDarkly API Documentation') for our API documentation
|
|
25
27
|
- [blog.launchdarkly.com](https://blog.launchdarkly.com/ 'LaunchDarkly Blog Documentation') for the latest product updates
|
|
28
|
+
|
|
29
|
+
[shared-common-ci-badge]: https://github.com/launchdarkly/js-core/actions/workflows/common.yml/badge.svg
|
|
30
|
+
[shared-common-ci]: https://github.com/launchdarkly/js-core/actions/workflows/common.yml
|
|
31
|
+
|
|
32
|
+
[common-npm-badge]: https://img.shields.io/npm/v/@launchdarkly/js-sdk-common.svg?style=flat-square
|
|
33
|
+
[common-npm-link]: https://www.npmjs.com/package/@launchdarkly/js-sdk-common
|