Skip to content

Commit

Permalink
fix: updated docs instead of var def
Browse files Browse the repository at this point in the history
  • Loading branch information
Mahidhar Chaluvadi committed Oct 8, 2023
1 parent ac170b8 commit a1a39e1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ While Adobe [provides documentation](https://experienceleague.adobe.com/docs/exp

Choose this option if youChoosing this option is consistent with how `aem-packager` worked previous to v4.0

#### crxCompatibility
#### legacyCRXSupport

Enables backwards compatibility for CRX when using Jackrabbit for `packager`. Set boolean `true` or `false`. Defaults to `false`. When enabled, it includes the JCR Vault `content-package-maven-plugin` so that built packages have the necessary goals needed for CRX deployment. Has no effect if `packager` is set to `jcrvault`.

Expand Down
2 changes: 1 addition & 1 deletion src/defaults.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"srcDir": "dist",
"buildDir": "target",
"packager": "jackrabbit",
"crxCompatibility": false
"legacyCRXSupport": false
},
"defines": {
"name": "My Project",
Expand Down
2 changes: 1 addition & 1 deletion src/template.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const loadTemplate = (template) => {
return xmlDoc
}

const assemblePom = ({ packager: mode = 'jackrabbit', crxCompatibility: legacyCRXSupport = false }) => {
const assemblePom = ({ packager: mode = 'jackrabbit', legacyCRXSupport = false }) => {
try {
Console.debug(`Asembling a pom.xml that will use ${mode}`)

Expand Down

0 comments on commit a1a39e1

Please sign in to comment.