qualifire 0.0.1 → 0.1.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/README.md +14 -17
- package/lib/index.d.ts +1 -0
- package/lib/index.js +5 -0
- package/package.json +14 -13
package/README.md
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
# my-package-name
|
|
2
2
|
|
|
3
|
-
[![
|
|
4
|
-
[![
|
|
5
|
-
[![Downloads][downloads-img]][downloads-url]
|
|
3
|
+
[](https://github.com/drorIvry/qualifire-typescript-sdk/actions/workflows/codeql-analysis.yml)
|
|
4
|
+
[](https://github.com/drorIvry/qualifire-typescript-sdk/actions/workflows/release.yml)
|
|
6
5
|
[![Issues][issues-img]][issues-url]
|
|
7
6
|
[![Code Coverage][codecov-img]][codecov-url]
|
|
8
7
|
[![Commitizen Friendly][commitizen-img]][commitizen-url]
|
|
@@ -46,17 +45,15 @@ Default: `rainbows`
|
|
|
46
45
|
|
|
47
46
|
Lorem ipsum.
|
|
48
47
|
|
|
49
|
-
[build-img]:https://github.com/drorivry/develop/qualifire-typescript-sdk/actions/workflows/release.yml/badge.svg
|
|
50
|
-
[build-url]:https://github.com/drorivry/
|
|
51
|
-
[downloads-img]:https://img.shields.io/npm/dt/
|
|
52
|
-
[
|
|
53
|
-
[
|
|
54
|
-
[
|
|
55
|
-
[
|
|
56
|
-
[
|
|
57
|
-
[
|
|
58
|
-
[
|
|
59
|
-
[
|
|
60
|
-
[
|
|
61
|
-
[commitizen-img]:https://img.shields.io/badge/commitizen-friendly-brightgreen.svg
|
|
62
|
-
[commitizen-url]:http://commitizen.github.io/cz-cli/
|
|
48
|
+
[build-img]: https://github.com/drorivry/develop/qualifire-typescript-sdk/actions/workflows/release.yml/badge.svg
|
|
49
|
+
[build-url]: https://github.com/drorivry/qualifire-typescript-sdk/actions/workflows/release.yml
|
|
50
|
+
[downloads-img]: https://img.shields.io/npm/dt/main/qualifire
|
|
51
|
+
[npm-url]: https://www.npmjs.com/package/qualifire
|
|
52
|
+
[issues-img]: https://img.shields.io/github/issues/drorivry/develop/qualifire-typescript-sdk
|
|
53
|
+
[issues-url]: https://github.com/drorivry/qualifire-typescript-sdk/issues
|
|
54
|
+
[codecov-img]: https://codecov.io/gh/drorivry/develop/qualifire-typescript-sdk/branch/main/graph/badge.svg
|
|
55
|
+
[codecov-url]: https://codecov.io/gh/drorivry/develop/qualifire-typescript-sdk
|
|
56
|
+
[semantic-release-img]: https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg
|
|
57
|
+
[semantic-release-url]: https://github.com/semantic-release/semantic-release
|
|
58
|
+
[commitizen-img]: https://img.shields.io/badge/commitizen-friendly-brightgreen.svg
|
|
59
|
+
[commitizen-url]: http://commitizen.github.io/cz-cli/
|
package/lib/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const myPackage: (taco?: string) => string;
|
package/lib/index.js
ADDED
package/package.json
CHANGED
|
@@ -1,14 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "qualifire",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "Qualifire client SDK",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"files": [
|
|
7
7
|
"lib/**/*"
|
|
8
8
|
],
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "tsc --project tsconfig.build.json",
|
|
11
|
+
"clean": "rm -rf ./lib/",
|
|
12
|
+
"cm": "cz",
|
|
13
|
+
"lint": "eslint ./src/ --fix",
|
|
14
|
+
"prepare": "husky install",
|
|
15
|
+
"semantic-release": "semantic-release",
|
|
16
|
+
"test:watch": "jest --watch",
|
|
17
|
+
"test": "jest --coverage",
|
|
18
|
+
"typecheck": "tsc --noEmit"
|
|
19
|
+
},
|
|
9
20
|
"repository": {
|
|
10
21
|
"type": "git",
|
|
11
|
-
"url": "
|
|
22
|
+
"url": "https://github.com/drorivry/qualifire-typescript-sdk.git"
|
|
12
23
|
},
|
|
13
24
|
"license": "MIT",
|
|
14
25
|
"author": {
|
|
@@ -101,15 +112,5 @@
|
|
|
101
112
|
"@semantic-release/npm",
|
|
102
113
|
"@semantic-release/github"
|
|
103
114
|
]
|
|
104
|
-
},
|
|
105
|
-
"scripts": {
|
|
106
|
-
"build": "tsc --project tsconfig.build.json",
|
|
107
|
-
"clean": "rm -rf ./lib/",
|
|
108
|
-
"cm": "cz",
|
|
109
|
-
"lint": "eslint ./src/ --fix",
|
|
110
|
-
"semantic-release": "semantic-release",
|
|
111
|
-
"test:watch": "jest --watch",
|
|
112
|
-
"test": "jest --coverage",
|
|
113
|
-
"typecheck": "tsc --noEmit"
|
|
114
115
|
}
|
|
115
|
-
}
|
|
116
|
+
}
|