Skip to content

Commit

Permalink
Prepare release 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
djhi committed Nov 27, 2023
1 parent 6ae9763 commit c83d68c
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 63 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.2.0

* Add support for deep link redirect ([#9](https://github.com/marmelab/ra-auth-msal/pull/9) ([jonathan-marmelab](https://github.com/jonathan-marmelab)))

# 1.1.0

* Add support for automatic token refresh ([#7](https://github.com/marmelab/ra-auth-msal/pull/7)) ([djhi](https://github.com/djhi))
Expand Down
126 changes: 63 additions & 63 deletions packages/ra-auth-msal/package.json
Original file line number Diff line number Diff line change
@@ -1,65 +1,65 @@
{
"name": "ra-auth-msal",
"version": "1.1.0",
"repository": "[email protected]:marmelab/ra-auth-msal.git",
"author": "Jean-Baptiste Kaiser <[email protected]> (https://marmelab.com/)",
"license": "MIT",
"files": [
"*.md",
"lib",
"esm",
"src"
"name": "ra-auth-msal",
"version": "1.2.0",
"repository": "[email protected]:marmelab/ra-auth-msal.git",
"author": "Jean-Baptiste Kaiser <[email protected]> (https://marmelab.com/)",
"license": "MIT",
"files": [
"*.md",
"lib",
"esm",
"src"
],
"main": "lib/index",
"module": "esm/index.js",
"types": "esm/index.d.ts",
"sideEffects": false,
"dependencies": {
"@azure/msal-browser": "^2.16.1",
"react-admin": "^4.9.0"
},
"scripts": {
"build": "yarn run build-cjs && yarn run build-esm",
"build-cjs": "rimraf ./lib && tsc",
"build-esm": "rimraf ./esm && tsc --outDir esm --module es2015",
"watch": "tsc --outDir esm --module es2015 --watch",
"lint": "eslint --fix ./src",
"test-unit": "jest"
},
"devDependencies": {
"@types/jest": "^29.1.0",
"jest": "^29.1.1",
"jest-environment-jsdom": "^29.1.1",
"react": "^18.2.0",
"react-admin": "^4.12.1",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"collectCoverageFrom": [
"**/*.js",
"**/*.ts",
"!__tests__/util.ts",
"!coverage/**",
"!**/node_modules/**"
],
"main": "lib/index",
"module": "esm/index.js",
"types": "esm/index.d.ts",
"sideEffects": false,
"dependencies": {
"@azure/msal-browser": "^2.16.1",
"react-admin": "^4.9.0"
},
"scripts": {
"build": "yarn run build-cjs && yarn run build-esm",
"build-cjs": "rimraf ./lib && tsc",
"build-esm": "rimraf ./esm && tsc --outDir esm --module es2015",
"watch": "tsc --outDir esm --module es2015 --watch",
"lint": "eslint --fix ./src",
"test-unit": "jest"
},
"devDependencies": {
"@types/jest": "^29.1.0",
"jest": "^29.1.1",
"jest-environment-jsdom": "^29.1.1",
"react": "^18.2.0",
"react-admin": "^4.12.1",
"react-dom": "^18.2.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"collectCoverageFrom": [
"**/*.js",
"**/*.ts",
"!__tests__/util.ts",
"!coverage/**",
"!**/node_modules/**"
],
"verbose": true,
"automock": false,
"clearMocks": true,
"testPathIgnorePatterns": [
"/node_modules/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}
"verbose": true,
"automock": false,
"clearMocks": true,
"testPathIgnorePatterns": [
"/node_modules/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}

0 comments on commit c83d68c

Please sign in to comment.