@featurevisor/types 0.45.0 → 0.47.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/.eslintcache +1 -0
- package/.eslintrc.js +8 -0
- package/.prettierignore +5 -0
- package/CHANGELOG.md +19 -0
- package/package.json +7 -4
- package/prettier.config.js +8 -0
package/.eslintcache
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[{"/home/runner/work/featurevisor/featurevisor/packages/types/src/index.ts":"1"},{"size":9035,"mtime":1693953047201,"results":"2","hashOfConfig":"3"},{"filePath":"4","messages":"5","suppressedMessages":"6","errorCount":0,"fatalErrorCount":0,"warningCount":0,"fixableErrorCount":0,"fixableWarningCount":0},"qjtn9o","/home/runner/work/featurevisor/featurevisor/packages/types/src/index.ts",[],[]]
|
package/.eslintrc.js
ADDED
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.47.0](https://github.com/fahad19/featurevisor/compare/v0.46.2...v0.47.0) (2023-09-05)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* use Prettier v2.x ([#143](https://github.com/fahad19/featurevisor/issues/143)) ([ddca499](https://github.com/fahad19/featurevisor/commit/ddca499526f2f8bf10dc340fb55877584501a682))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [0.46.0](https://github.com/fahad19/featurevisor/compare/v0.45.0...v0.46.0) (2023-08-27)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @featurevisor/types
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# [0.45.0](https://github.com/fahad19/featurevisor/compare/v0.44.2...v0.45.0) (2023-08-20)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @featurevisor/types
|
package/package.json
CHANGED
|
@@ -1,16 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@featurevisor/types",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.47.0",
|
|
4
4
|
"description": "Common Typescript types for Featurevisor",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "lib/index.js",
|
|
7
7
|
"types": "lib/index.d.ts",
|
|
8
8
|
"scripts": {
|
|
9
|
-
"lint": "echo 'not linting in this package yet'",
|
|
10
9
|
"transpile": "rimraf lib && tsc --project tsconfig.esm.json",
|
|
11
10
|
"dist": "webpack --config ./webpack.config.js",
|
|
12
11
|
"build": "npm run transpile && npm run dist",
|
|
13
|
-
"test": "echo 'Nothing to test in types package'"
|
|
12
|
+
"test": "echo 'Nothing to test in types package'",
|
|
13
|
+
"format": "prettier . --check --cache --log-level=warn",
|
|
14
|
+
"lint": "eslint . --cache",
|
|
15
|
+
"format:fix": "prettier . --write --cache --log-level=warn",
|
|
16
|
+
"lint:fix": "eslint . --fix --cache"
|
|
14
17
|
},
|
|
15
18
|
"author": {
|
|
16
19
|
"name": "Fahad Heylaal",
|
|
@@ -41,5 +44,5 @@
|
|
|
41
44
|
"url": "https://github.com/fahad19/featurevisor/issues"
|
|
42
45
|
},
|
|
43
46
|
"license": "MIT",
|
|
44
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "cc153ea5b692390b6af2c374d590d5846eecb67e"
|
|
45
48
|
}
|