@launchdarkly/js-sdk-common 0.3.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/LICENSE +13 -0
  3. package/package.json +8 -2
package/CHANGELOG.md CHANGED
@@ -2,6 +2,22 @@
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
+ ## [1.0.1](https://github.com/launchdarkly/js-core/compare/js-sdk-common-v1.0.0...js-sdk-common-v1.0.1) (2023-04-27)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * add licence and fix missing package.json fields. ([c586398](https://github.com/launchdarkly/js-core/commit/c5863980c5bf4ee2a7590dfc4f7c575045d669b0))
11
+ * Ensure top level commands work correctly ([#105](https://github.com/launchdarkly/js-core/issues/105)) ([762571f](https://github.com/launchdarkly/js-core/commit/762571ff851558d229e4d29ba40a9c16b89f2a8d))
12
+ * remove beta text from cloudflare sdk readme. ([c586398](https://github.com/launchdarkly/js-core/commit/c5863980c5bf4ee2a7590dfc4f7c575045d669b0))
13
+
14
+ ## [1.0.0](https://github.com/launchdarkly/js-core/compare/js-sdk-common-v0.3.0...js-sdk-common-v1.0.0) (2023-04-26)
15
+
16
+
17
+ ### Features
18
+
19
+ * initial major release ([#101](https://github.com/launchdarkly/js-core/issues/101)) ([9883675](https://github.com/launchdarkly/js-core/commit/98836758d1998f208a1e13a68955611e0b10a8ce))
20
+
5
21
  ## [0.3.0](https://github.com/launchdarkly/js-core/compare/js-sdk-common-v0.2.0...js-sdk-common-v0.3.0) (2023-04-19)
6
22
 
7
23
 
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/package.json CHANGED
@@ -1,12 +1,17 @@
1
1
  {
2
2
  "name": "@launchdarkly/js-sdk-common",
3
- "version": "0.3.0",
3
+ "version": "1.0.1",
4
4
  "type": "commonjs",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
7
+ "homepage": "https://github.com/launchdarkly/js-core/tree/main/packages/shared/common",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/launchdarkly/js-core.git"
11
+ },
7
12
  "description": "LaunchDarkly SDK for JavaScript - common code",
8
13
  "files": [
9
- "/dist"
14
+ "dist"
10
15
  ],
11
16
  "keywords": [
12
17
  "launchdarkly",
@@ -16,6 +21,7 @@
16
21
  "scripts": {
17
22
  "test": "npx jest --ci",
18
23
  "build": "npx tsc",
24
+ "clean": "npx tsc --build --clean",
19
25
  "lint": "npx eslint . --ext .ts",
20
26
  "lint:fix": "yarn run lint -- --fix"
21
27
  },