@featurevisor/core 0.12.1 → 0.14.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 +19 -0
- package/jest.config.js +4 -0
- package/package.json +56 -56
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [0.14.0](https://github.com/fahad19/featurevisor/compare/v0.13.1...v0.14.0) (2023-04-21)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* React integration package ([#56](https://github.com/fahad19/featurevisor/issues/56)) ([d0f6ad8](https://github.com/fahad19/featurevisor/commit/d0f6ad8a7e40fa06a741706a5322c08486e84ea9))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [0.13.0](https://github.com/fahad19/featurevisor/compare/v0.12.1...v0.13.0) (2023-04-19)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @featurevisor/core
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [0.12.1](https://github.com/fahad19/featurevisor/compare/v0.12.0...v0.12.1) (2023-04-18)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @featurevisor/core
|
package/jest.config.js
ADDED
package/package.json
CHANGED
|
@@ -1,58 +1,58 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
2
|
+
"name": "@featurevisor/core",
|
|
3
|
+
"version": "0.14.0",
|
|
4
|
+
"description": "Core package of Featurevisor for Node.js usage",
|
|
5
|
+
"main": "lib/index.js",
|
|
6
|
+
"types": "lib/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"lint": "echo 'not linting in this package yet'",
|
|
9
|
+
"transpile": "rimraf lib && tsc --project tsconfig.cjs.json",
|
|
10
|
+
"dist": "echo 'Nothing to dist here'",
|
|
11
|
+
"build": "npm run transpile",
|
|
12
|
+
"test": "jest --verbose"
|
|
13
|
+
},
|
|
14
|
+
"author": {
|
|
15
|
+
"name": "Fahad Heylaal",
|
|
16
|
+
"url": "https://fahad19.com"
|
|
17
|
+
},
|
|
18
|
+
"homepage": "https://featurevisor.com",
|
|
19
|
+
"keywords": [
|
|
20
|
+
"featurevisor",
|
|
21
|
+
"feature",
|
|
22
|
+
"features",
|
|
23
|
+
"flags",
|
|
24
|
+
"feature flags",
|
|
25
|
+
"feature toggles",
|
|
26
|
+
"feature management",
|
|
27
|
+
"experimentation",
|
|
28
|
+
"experiment",
|
|
29
|
+
"experiments"
|
|
30
|
+
],
|
|
31
|
+
"repository": {
|
|
32
|
+
"type": "git",
|
|
33
|
+
"url": "https://github.com/fahad19/featurevisor.git"
|
|
34
|
+
},
|
|
35
|
+
"publishConfig": {
|
|
36
|
+
"access": "public",
|
|
37
|
+
"registry": "https://registry.npmjs.org/"
|
|
38
|
+
},
|
|
39
|
+
"bugs": {
|
|
40
|
+
"url": "https://github.com/fahad19/featurevisor/issues"
|
|
41
|
+
},
|
|
42
|
+
"license": "MIT",
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@featurevisor/sdk": "^0.14.0",
|
|
45
|
+
"@featurevisor/site": "^0.14.0",
|
|
46
|
+
"@featurevisor/types": "^0.14.0",
|
|
47
|
+
"axios": "^1.3.4",
|
|
48
|
+
"joi": "^17.8.3",
|
|
49
|
+
"js-yaml": "^4.1.0",
|
|
50
|
+
"mkdirp": "^2.1.3",
|
|
51
|
+
"tar": "^6.1.13"
|
|
52
|
+
},
|
|
53
|
+
"devDependencies": {
|
|
54
|
+
"@types/js-yaml": "^4.0.5",
|
|
55
|
+
"@types/tar": "^6.1.4"
|
|
56
|
+
},
|
|
57
|
+
"gitHead": "eb0599df92747f40e6ece174e4de37ac4c098c4c"
|
|
58
58
|
}
|