@quatrain/auth 1.1.10 → 1.1.12

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 (1) hide show
  1. package/package.json +8 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quatrain/auth",
3
- "version": "1.1.10",
3
+ "version": "1.1.12",
4
4
  "license": "MIT",
5
5
  "description": "Auth adapters commons",
6
6
  "main": "lib/index.js",
@@ -11,7 +11,7 @@
11
11
  ],
12
12
  "author": "Quatrain Développement SAS <developers@quatrain.com>",
13
13
  "dependencies": {
14
- "@quatrain/core": "^1.1.10"
14
+ "@quatrain/core": "^1.1.11"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@tsconfig/recommended": "^1.0.1",
@@ -26,13 +26,14 @@
26
26
  "typescript": "^5.1.5"
27
27
  },
28
28
  "scripts": {
29
- "pretest": "tsc",
30
- "test": "clear && firebase emulators:exec 'jest -i --verbose --silent=false'",
31
29
  "test-ci": "jest --runInBand",
32
30
  "build": "tsc",
33
31
  "wbuild": "tsc --watch",
34
- "prepush": "tsc",
35
- "publish": "yarn build && yarn npm publish --access public",
36
- "bump-to": "yarn version"
32
+ "bump-to": "yarn version",
33
+ "hash": "node ../../bin/hashFolder.js",
34
+ "hash_persist": "yarn hash > .hash_latest.txt",
35
+ "hash_compare": "yarn hash > .hash_newest.txt && cmp -s .hash_latest.txt .hash_newest.txt",
36
+ "publish": "yarn hash_compare || yarn publish_process",
37
+ "publish_process": "yarn version patch && yarn build && yarn npm publish --access public && yarn hash_persist"
37
38
  }
38
39
  }