Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# MSAL Browser
/lib/msal-browser/src/custom_auth/ @shenj @yongdiw @nilo-ms @spetrescu84 @mustafamizrak
/lib/msal-browser/test/custom_auth/ @shenj @yongdiw @nilo-ms @spetrescu84 @mustafamizrak
/samples/msal-browser-samples/NativeAuthSample @shenj @yongdiw @nilo-ms @spetrescu84 @mustafamizrak

# MSAL Node
/lib/msal-node/ @AzureAD/msal-js-public-client @AzureAD/id4s-msal-team
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "minor",
"comment": "Add native auth e2e sample app",
"packageName": "@azure/msal-browser",
"email": "[email protected]",
"dependentChangeType": "patch"
}
31 changes: 31 additions & 0 deletions lib/msal-browser/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,4 +182,35 @@ export default [
}),
],
},
{
// Custom Auth - UMD build
input: "src/custom_auth/index.ts",
output: [
{
dir: "lib/custom-auth-path",
format: "umd",
name: "msalCustomAuth",
banner: fileHeader,
inlineDynamicImports: true,
sourcemap: true,
entryFileNames: "msal-custom-auth.js",
},
],
plugins: [
nodeResolve({
browser: true,
resolveOnly: ["@azure/msal-common", "tslib"],
}),
typescript({
typescript: require("typescript"),
tsconfig: "tsconfig.custom-auth.build.json",
sourceMap: true,
compilerOptions: {
outDir: "lib/custom-auth-path/types",
declaration: false,
declarationMap: false,
},
}),
],
},
];
39 changes: 39 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading