@salesforce/lds-adapters-graphql 1.294.0 → 1.295.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/package.json +7 -11
- package/sfdc/index.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/lds-adapters-graphql",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.295.0",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"description": "Wire adapter for GraphQL API endpoint",
|
|
6
6
|
"main": "dist/es/es2018/graphql-service.js",
|
|
@@ -25,11 +25,7 @@
|
|
|
25
25
|
"scripts": {
|
|
26
26
|
"clean": "rm -rf dist sfdc karma/dist",
|
|
27
27
|
"build": "yarn build:services",
|
|
28
|
-
"build:karma": "rollup --bundleConfigAsCjs --config rollup.config.karma.js",
|
|
29
28
|
"build:services": "rollup --bundleConfigAsCjs --config rollup.config.js",
|
|
30
|
-
"start": "nx build:karma && karma start",
|
|
31
|
-
"test": "nx build:karma && karma start --single-run",
|
|
32
|
-
"test:headless": "nx build:karma && karma start --single-run --browsers ChromeHeadless",
|
|
33
29
|
"test:unit": "jest",
|
|
34
30
|
"test:unit:debug": "node --inspect-brk ../../node_modules/jest/bin/jest.js --config ./jest.config.js --runInBand",
|
|
35
31
|
"test:size": "luvioBundlesize",
|
|
@@ -37,14 +33,14 @@
|
|
|
37
33
|
},
|
|
38
34
|
"dependencies": {
|
|
39
35
|
"@luvio/graphql-parser": "0.154.20",
|
|
40
|
-
"@salesforce/lds-adapters-uiapi": "^1.
|
|
41
|
-
"@salesforce/lds-bindings": "^1.
|
|
42
|
-
"@salesforce/lds-default-luvio": "^1.
|
|
36
|
+
"@salesforce/lds-adapters-uiapi": "^1.295.0",
|
|
37
|
+
"@salesforce/lds-bindings": "^1.295.0",
|
|
38
|
+
"@salesforce/lds-default-luvio": "^1.295.0"
|
|
43
39
|
},
|
|
44
40
|
"devDependencies": {
|
|
45
|
-
"@salesforce/lds-compiler-plugins": "^1.
|
|
46
|
-
"@salesforce/lds-graphql-eval": "^1.
|
|
47
|
-
"@salesforce/lds-jest": "^1.
|
|
41
|
+
"@salesforce/lds-compiler-plugins": "^1.295.0",
|
|
42
|
+
"@salesforce/lds-graphql-eval": "^1.295.0",
|
|
43
|
+
"@salesforce/lds-jest": "^1.295.0"
|
|
48
44
|
},
|
|
49
45
|
"nx": {
|
|
50
46
|
"targets": {
|
package/sfdc/index.js
CHANGED