Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: adobe/aem-spa-page-model-manager
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.4.2
Choose a base ref
...
head repository: adobe/aem-spa-page-model-manager
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.4.3
Choose a head ref
  • 4 commits
  • 5 files changed
  • 2 contributors

Commits on Jun 2, 2022

  1. fix ts issue

    sharanyavinod committed Jun 2, 2022
    Copy the full SHA
    7346e7a View commit details
  2. fix: ts config paths

    sharanyavinod committed Jun 2, 2022
    Copy the full SHA
    76fc0c0 View commit details
  3. Merge pull request #84 from adobe/issue/tsfix

    fix: ts prod issue fix
    sharanyavinod authored Jun 2, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    198fcf0 View commit details
  4. chore(release): 1.4.3 [skip ci]

    ## [1.4.3](v1.4.2...v1.4.3) (2022-06-02)
    
    ### Bug Fixes
    
    * ts config paths ([76fc0c0](76fc0c0))
    semantic-release-bot committed Jun 2, 2022
    Copy the full SHA
    7f5439c View commit details
Showing with 13 additions and 6 deletions.
  1. +7 −0 CHANGELOG.md
  2. +3 −3 package.json
  3. +1 −1 { → src}/tsconfig.base.json
  4. +1 −1 { → src}/tsconfig.types.json
  5. +1 −1 tsconfig.json
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.4.3](https://github.com/adobe/aem-spa-page-model-manager/compare/v1.4.2...v1.4.3) (2022-06-02)


### Bug Fixes

* ts config paths ([76fc0c0](https://github.com/adobe/aem-spa-page-model-manager/commit/76fc0c04f45d6611ea38e331d584de9ab8484af4))

## [1.4.2](https://github.com/adobe/aem-spa-page-model-manager/compare/v1.4.1...v1.4.2) (2022-06-02)


6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@adobe/aem-spa-page-model-manager",
"version": "1.4.2",
"version": "1.4.3",
"description": "An interpreter between AEM Editor and the AEM SPA Editor.",
"keywords": [
"spa",
@@ -23,8 +23,8 @@
"types": "dist/types.d.ts",
"scripts": {
"build:production": "NODE_ENV=production npm run build",
"build:types": "tsc -p tsconfig.types.json",
"build": "npm run clean && npm run lint && npm run build:types && webpack",
"build:types": "tsc -p src/tsconfig.types.json",
"build": "npm run clean && npm run lint && webpack && npm run build:types",
"clean": "rm -rf dist/",
"docs": "npm i && npx typedoc --entryPointStrategy expand --excludePrivate ./src --out ./dist/docs",
"lint": "eslint .",
2 changes: 1 addition & 1 deletion tsconfig.base.json → src/tsconfig.base.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "./tsconfig.json",
"extends": "../tsconfig.json",
"compilerOptions": {
"noEmit": false,
"baseUrl": ".",
2 changes: 1 addition & 1 deletion tsconfig.types.json → src/tsconfig.types.json
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@
"removeComments": false,
"declaration": true,
"declarationMap": true,
"declarationDir": "./dist",
"declarationDir": "../dist",
"emitDeclarationOnly": true
},
"exclude": [
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -22,5 +22,5 @@
},
"include": [
"src/**/*"
, "tsconfig.base.json" ]
]
}