@carto/api-client 0.0.37 → 0.0.41
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/build/api-client.cjs
CHANGED
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"repository": "github:CartoDB/carto-api-client",
|
|
5
5
|
"author": "Don McCurdy <donmccurdy@carto.com>",
|
|
6
6
|
"packageManager": "yarn@4.3.1",
|
|
7
|
-
"version": "0.0.
|
|
7
|
+
"version": "0.0.41",
|
|
8
8
|
"license": "MIT",
|
|
9
9
|
"publishConfig": {
|
|
10
10
|
"access": "public",
|
|
@@ -38,8 +38,12 @@
|
|
|
38
38
|
"lint": "prettier \"**/*.{cjs,html,js,json,md,ts}\" --ignore-path ./.eslintignore --check",
|
|
39
39
|
"format": "prettier \"**/*.{cjs,html,js,json,md,ts}\" --ignore-path ./.eslintignore --write",
|
|
40
40
|
"clean": "rimraf build/*",
|
|
41
|
-
"
|
|
42
|
-
"
|
|
41
|
+
"postversion": "yarn postversion:check && yarn postversion:commit && yarn postversion:push",
|
|
42
|
+
"postversion:check": "yarn lint && yarn test",
|
|
43
|
+
"postversion:commit": "VERSION=v$npm_package_version && git add -u && git commit -m $VERSION && git tag -a $VERSION -m $VERSION",
|
|
44
|
+
"postversion:push": "git push && git push --tags",
|
|
45
|
+
"prepublish": "yarn lint && yarn test",
|
|
46
|
+
"prepack": "yarn clean && yarn build"
|
|
43
47
|
},
|
|
44
48
|
"files": [
|
|
45
49
|
"build",
|