contentful-management 11.63.2-dx-542-update-to-gha.1 → 11.63.2-update-pipeline-scripts.1
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 +1 -2
- package/dist/contentful-management.browser.js +1 -1
- package/dist/contentful-management.browser.js.map +1 -1
- package/dist/contentful-management.browser.min.js +1 -1
- package/dist/contentful-management.node.js +1 -1
- package/dist/contentful-management.node.js.map +1 -1
- package/dist/contentful-management.node.min.js +1 -1
- package/dist/es-modules/contentful-management.js +1 -1
- package/package.json +14 -13
|
@@ -49,7 +49,7 @@ function createClient(params, opts = {}) {
|
|
|
49
49
|
const sdkMain = opts.type === 'plain' ? 'contentful-management-plain.js' : 'contentful-management.js';
|
|
50
50
|
const userAgent = getUserAgentHeader(
|
|
51
51
|
// @ts-expect-error
|
|
52
|
-
`${sdkMain}/${"
|
|
52
|
+
`${sdkMain}/${"0.0.0-determined-by-semantic-release"}`, params.application, params.integration, params.feature);
|
|
53
53
|
const adapter = createAdapter(_objectSpread(_objectSpread({}, params), {}, {
|
|
54
54
|
userAgent
|
|
55
55
|
}));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "contentful-management",
|
|
3
|
-
"version": "11.63.2-
|
|
3
|
+
"version": "11.63.2-update-pipeline-scripts.1",
|
|
4
4
|
"description": "Client for Contentful's Content Management API",
|
|
5
5
|
"homepage": "https://www.contentful.com/developers/documentation/content-management-api/",
|
|
6
6
|
"main": "./dist/contentful-management.node.js",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"docs:watch": "nodemon --exec npm run docs:dev -w lib typings",
|
|
36
36
|
"docs:publish": "npm run build:docs && ./node_modules/contentful-sdk-jsdoc/bin/publish-docs.sh contentful-management.js contentful-management",
|
|
37
37
|
"lint": "eslint lib test",
|
|
38
|
-
"
|
|
38
|
+
"lint:fix": "eslint lib test --fix",
|
|
39
39
|
"test": "npm run test:unit:cover && npm run test:types && npm run test:integration:cover && npm run test:size",
|
|
40
40
|
"test:unit:cover": "npm run test:unit -- --coverage",
|
|
41
41
|
"test:unit": "npx vitest --project unit --run",
|
|
@@ -48,16 +48,12 @@
|
|
|
48
48
|
"test:version": "grep -r \"0.0.0-determined-by-semantic-release\" ./dist > /dev/null && echo \"version 0.0.0-determined-by-semantic-release found in output\" && exit 1 || exit 0",
|
|
49
49
|
"test:size": "size-limit",
|
|
50
50
|
"test:demo-projects": "npm run test:demo-node && npm run test:demo-browser",
|
|
51
|
-
"test:demo-node": "
|
|
52
|
-
"test:demo-browser": "
|
|
53
|
-
"
|
|
54
|
-
"format:fix": "prettier --write '**/*.{jsx,js,ts,tsx}'",
|
|
51
|
+
"test:demo-node": "npm ci --prefix ./test/output-integration/node && npm run test --prefix ./test/output-integration/node",
|
|
52
|
+
"test:demo-browser": "npm ci --prefix ./test/output-integration/browser && npm run setup-test-env --prefix ./test/output-integration/browser && npm run test --prefix ./test/output-integration/browser",
|
|
53
|
+
"format:fix": "npm run format:check -- --write",
|
|
55
54
|
"format:check": "prettier --check '**/*.{jsx,js,ts,tsx}'",
|
|
56
55
|
"semantic-release": "semantic-release",
|
|
57
|
-
"
|
|
58
|
-
"postpublish": "if [ \"$(git rev-parse --abbrev-ref HEAD)\" = master ] ; then npm run docs:publish && npm run clean ; else exit 0 ; fi",
|
|
59
|
-
"prepush": "npm run test:prepush",
|
|
60
|
-
"prepublishOnly": "npm run build && npm run test:version"
|
|
56
|
+
"prepare": "husky"
|
|
61
57
|
},
|
|
62
58
|
"files": [
|
|
63
59
|
"dist",
|
|
@@ -125,9 +121,9 @@
|
|
|
125
121
|
}
|
|
126
122
|
},
|
|
127
123
|
"lint-staged": {
|
|
128
|
-
"
|
|
124
|
+
"./{lib,test}/*.{js,ts}": [
|
|
129
125
|
"prettier --write",
|
|
130
|
-
"eslint"
|
|
126
|
+
"eslint --fix"
|
|
131
127
|
],
|
|
132
128
|
"*.md": [
|
|
133
129
|
"prettier --write"
|
|
@@ -146,7 +142,12 @@
|
|
|
146
142
|
"prerelease": true
|
|
147
143
|
},
|
|
148
144
|
{
|
|
149
|
-
"name": "
|
|
145
|
+
"name": "dev",
|
|
146
|
+
"channel": "dev",
|
|
147
|
+
"prerelease": true
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"name": "update-pipeline-scripts",
|
|
150
151
|
"channel": "dev",
|
|
151
152
|
"prerelease": true
|
|
152
153
|
}
|