anzar 1.0.24 → 1.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.
Files changed (3) hide show
  1. package/.gitlab-ci.yml +2 -8
  2. package/Makefile +1 -1
  3. package/package.json +24 -25
package/.gitlab-ci.yml CHANGED
@@ -1,10 +1,6 @@
1
1
  stages:
2
2
  - deploy
3
3
 
4
- # permissions:
5
- # id-token: write # Required for OIDC
6
- # contents: read
7
-
8
4
  publish_npm:
9
5
  stage: deploy
10
6
  image: node:latest
@@ -15,9 +11,7 @@ publish_npm:
15
11
  aud: sigstore
16
12
  script:
17
13
  - npm publish
18
-
19
- # only:
20
- # - tags
21
-
14
+ only:
15
+ - tags
22
16
  # rules:
23
17
  # - if: $CI_COMMIT_TAG
package/Makefile CHANGED
@@ -5,4 +5,4 @@ install:
5
5
  publish:
6
6
  pnpm version patch
7
7
  # pnpm build
8
- git push
8
+ git push && git push --tags
package/package.json CHANGED
@@ -1,26 +1,25 @@
1
1
  {
2
- "name": "anzar",
3
- "version": "1.0.24",
4
- "description": "Anzar SDK",
5
- "main": "index.ts",
6
- "scripts": {
7
- "test": "echo \"Error: no test specified\" && exit 1"
8
- },
9
- "keywords": [],
10
- "repository": {
11
- "type": "git",
12
- "url": "git+https://gitlab.com/anzar_software/typescript-sdk.git"
13
- },
14
- "author": "Hakou Guelfen",
15
- "license": "GPLV3",
16
- "packageManager": "pnpm@10.28.2",
17
- "publishConfig": {
18
- "access": "public"
19
- },
20
- "dependencies": {
21
- "@types/node": "^25.0.3",
22
- "axios": "^1.13.2",
23
- "yaml": "^2.8.2",
24
- "zod": "^4.2.1"
25
- }
26
- }
2
+ "name": "anzar",
3
+ "version": "1.1.0",
4
+ "description": "Anzar SDK",
5
+ "main": "index.ts",
6
+ "keywords": [],
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://gitlab.com/anzar_software/typescript-sdk.git"
10
+ },
11
+ "author": "Hakou Guelfen",
12
+ "license": "GPLV3",
13
+ "publishConfig": {
14
+ "access": "public"
15
+ },
16
+ "dependencies": {
17
+ "@types/node": "^25.0.3",
18
+ "axios": "^1.13.2",
19
+ "yaml": "^2.8.2",
20
+ "zod": "^4.2.1"
21
+ },
22
+ "scripts": {
23
+ "test": "echo \"Error: no test specified\" && exit 1"
24
+ }
25
+ }