@sfdc-webapps/base-sfdx-project 1.0.2 → 1.0.4
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 +6 -5
package/package.json
CHANGED
|
@@ -1,24 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sfdc-webapps/base-sfdx-project",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Base SFDX project template",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
8
8
|
"scripts": {
|
|
9
|
+
"build": "echo 'No build required for base-sfdx-project'",
|
|
10
|
+
"clean": "echo 'No clean required for base-sfdx-project'",
|
|
9
11
|
"lint": "eslint **/{aura,lwc}/**/*.js",
|
|
10
|
-
"test": "
|
|
11
|
-
"test:unit": "sfdx-lwc-jest",
|
|
12
|
+
"test": "npm run test:unit",
|
|
13
|
+
"test:unit": "sfdx-lwc-jest -- --passWithNoTests",
|
|
12
14
|
"test:unit:watch": "sfdx-lwc-jest --watch",
|
|
13
15
|
"test:unit:debug": "sfdx-lwc-jest --debug",
|
|
14
16
|
"test:unit:coverage": "sfdx-lwc-jest --coverage",
|
|
15
17
|
"prettier": "prettier --write \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\"",
|
|
16
18
|
"prettier:verify": "prettier --check \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\"",
|
|
17
|
-
"postinstall": "husky install",
|
|
18
19
|
"precommit": "lint-staged"
|
|
19
20
|
},
|
|
20
21
|
"devDependencies": {
|
|
21
|
-
"@lwc/eslint-plugin-lwc": "^
|
|
22
|
+
"@lwc/eslint-plugin-lwc": "^2.0.0",
|
|
22
23
|
"@prettier/plugin-xml": "^3.2.2",
|
|
23
24
|
"@salesforce/eslint-config-lwc": "^3.2.3",
|
|
24
25
|
"@salesforce/eslint-plugin-aura": "^2.0.0",
|