@launchdarkly/js-server-sdk-common-edge 1.0.0 → 1.0.1
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 +16 -0
- package/LICENSE +13 -0
- package/README.md +3 -1
- package/dist/cjs/package.json +1 -1
- package/dist/esm/package.json +1 -1
- package/package.json +9 -3
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,22 @@
|
|
|
6
6
|
* dependencies
|
|
7
7
|
* @launchdarkly/js-server-sdk-common bumped from 0.3.0 to 0.3.1
|
|
8
8
|
|
|
9
|
+
## [1.0.1](https://github.com/launchdarkly/js-core/compare/js-server-sdk-common-edge-v1.0.0...js-server-sdk-common-edge-v1.0.1) (2023-04-27)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* add licence and fix missing package.json fields. ([c586398](https://github.com/launchdarkly/js-core/commit/c5863980c5bf4ee2a7590dfc4f7c575045d669b0))
|
|
15
|
+
* Ensure top level commands work correctly ([#105](https://github.com/launchdarkly/js-core/issues/105)) ([762571f](https://github.com/launchdarkly/js-core/commit/762571ff851558d229e4d29ba40a9c16b89f2a8d))
|
|
16
|
+
* remove beta text from cloudflare sdk readme. ([c586398](https://github.com/launchdarkly/js-core/commit/c5863980c5bf4ee2a7590dfc4f7c575045d669b0))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Dependencies
|
|
20
|
+
|
|
21
|
+
* The following workspace dependencies were updated
|
|
22
|
+
* dependencies
|
|
23
|
+
* @launchdarkly/js-server-sdk-common bumped from 1.0.0 to 1.0.1
|
|
24
|
+
|
|
9
25
|
## [1.0.0](https://github.com/launchdarkly/js-core/compare/js-server-sdk-common-edge-v0.0.3...js-server-sdk-common-edge-v1.0.0) (2023-04-26)
|
|
10
26
|
|
|
11
27
|
|
package/LICENSE
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Copyright 2022 Catamorphic, Co.
|
|
2
|
+
|
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License.
|
|
5
|
+
You may obtain a copy of the License at
|
|
6
|
+
|
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
|
|
9
|
+
Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
See the License for the specific language governing permissions and
|
|
13
|
+
limitations under the License.
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[![NPM][js-server-sdk-common-edge-badge]][js-server-sdk-common-edge-link]
|
|
4
4
|
[![Actions Status][shared-sdk-server-edge-ci-badge]][shared-sdk-server-edge-ci]
|
|
5
|
-
[![Documentation]
|
|
5
|
+
[![Documentation][shared-sdk-server-edge-ghp-badge]][shared-sdk-server-edge-ghp-link]
|
|
6
6
|
|
|
7
7
|
This project contains Typescript classes and interfaces that are applicable to server-side edge SDKs.
|
|
8
8
|
|
|
@@ -30,3 +30,5 @@ See [Contributing](../CONTRIBUTING.md).
|
|
|
30
30
|
[shared-sdk-server-edge-ci]: https://github.com/launchdarkly/js-core/actions/workflows/sdk-server-edge.yml
|
|
31
31
|
[js-server-sdk-common-edge-badge]: https://img.shields.io/npm/v/@launchdarkly/js-server-sdk-common-edge.svg?style=flat-square
|
|
32
32
|
[js-server-sdk-common-edge-link]: https://www.npmjs.com/package/@launchdarkly/js-server-sdk-common-edge
|
|
33
|
+
[shared-sdk-server-edge-ghp-badge]: https://img.shields.io/static/v1?label=GitHub+Pages&message=API+reference&color=00add8
|
|
34
|
+
[shared-sdk-server-edge-ghp-link]: https://launchdarkly.github.io/js-core/packages/shared/sdk-server-edge/docs/
|
package/dist/cjs/package.json
CHANGED
package/dist/esm/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@launchdarkly/js-server-sdk-common-edge",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"homepage": "https://github.com/launchdarkly/js-core/tree/main/packages/shared/sdk-server-edge",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/launchdarkly/js-core.git"
|
|
8
|
+
},
|
|
4
9
|
"description": "LaunchDarkly Server SDK for JavaScript - common Edge SDK code",
|
|
5
10
|
"packageManager": "yarn@3.4.1",
|
|
6
11
|
"keywords": [
|
|
@@ -17,12 +22,13 @@
|
|
|
17
22
|
"main": "./dist/cjs/src/index.js",
|
|
18
23
|
"types": "./dist/cjs/src/index.d.ts",
|
|
19
24
|
"files": [
|
|
20
|
-
"
|
|
25
|
+
"dist"
|
|
21
26
|
],
|
|
22
27
|
"scripts": {
|
|
23
28
|
"doc": "../../../scripts/build-doc.sh .",
|
|
24
29
|
"build": "../../../scripts/build-package.sh",
|
|
25
30
|
"tsw": "yarn tsc --watch",
|
|
31
|
+
"clean": "rimraf dist",
|
|
26
32
|
"start": "rimraf dist && yarn tsw",
|
|
27
33
|
"lint": "eslint . --ext .ts",
|
|
28
34
|
"prettier": "prettier --write '**/*.@(js|ts|tsx|json|css)' --ignore-path ../../../.prettierignore",
|
|
@@ -30,7 +36,7 @@
|
|
|
30
36
|
"check": "yarn prettier && yarn lint && yarn build && yarn test && yarn doc"
|
|
31
37
|
},
|
|
32
38
|
"dependencies": {
|
|
33
|
-
"@launchdarkly/js-server-sdk-common": "1.0.
|
|
39
|
+
"@launchdarkly/js-server-sdk-common": "1.0.1",
|
|
34
40
|
"crypto-js": "^4.1.1"
|
|
35
41
|
},
|
|
36
42
|
"devDependencies": {
|