Skip to content

Commit 4613363

Browse files
committed
Fix build and token config
1 parent 88981c9 commit 4613363

File tree

5 files changed

+75
-0
lines changed

5 files changed

+75
-0
lines changed

recipe/session/framework.d.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/* Copyright (c) 2021, VRAI Labs and/or its affiliates. All rights reserved.
2+
*
3+
* This software is licensed under the Apache License, Version 2.0 (the
4+
* "License") as published by the Apache Software Foundation.
5+
*
6+
* You may not use this file except in compliance with the License. You may
7+
* obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
8+
*
9+
* Unless required by applicable law or agreed to in writing, software
10+
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11+
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12+
* License for the specific language governing permissions and limitations
13+
* under the License.
14+
*/
15+
export * from "../../lib/build/recipe/session/framework";
16+
import * as _default from "../../lib/build/recipe/session/framework";
17+
export default _default;

recipe/session/framework.js

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/* Copyright (c) 2021, VRAI Labs and/or its affiliates. All rights reserved.
2+
*
3+
* This software is licensed under the Apache License, Version 2.0 (the
4+
* "License") as published by the Apache Software Foundation.
5+
*
6+
* You may not use this file except in compliance with the License. You may
7+
* obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
8+
*
9+
* Unless required by applicable law or agreed to in writing, software
10+
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11+
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12+
* License for the specific language governing permissions and limitations
13+
* under the License.
14+
*/
15+
"use strict";
16+
function __export(m) {
17+
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
18+
}
19+
exports.__esModule = true;
20+
__export(require("../../lib/build/recipe/session/framework"));

recipe/session/ssr.d.ts

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/* Copyright (c) 2021, VRAI Labs and/or its affiliates. All rights reserved.
2+
*
3+
* This software is licensed under the Apache License, Version 2.0 (the
4+
* "License") as published by the Apache Software Foundation.
5+
*
6+
* You may not use this file except in compliance with the License. You may
7+
* obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
8+
*
9+
* Unless required by applicable law or agreed to in writing, software
10+
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11+
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12+
* License for the specific language governing permissions and limitations
13+
* under the License.
14+
*/
15+
export * from "../../lib/build/recipe/session/ssr";
16+
import * as _default from "../../lib/build/recipe/session/ssr";
17+
export default _default;

recipe/session/ssr.js

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
/* Copyright (c) 2021, VRAI Labs and/or its affiliates. All rights reserved.
2+
*
3+
* This software is licensed under the Apache License, Version 2.0 (the
4+
* "License") as published by the Apache Software Foundation.
5+
*
6+
* You may not use this file except in compliance with the License. You may
7+
* obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
8+
*
9+
* Unless required by applicable law or agreed to in writing, software
10+
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11+
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12+
* License for the specific language governing permissions and limitations
13+
* under the License.
14+
*/
15+
"use strict";
16+
function __export(m) {
17+
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
18+
}
19+
exports.__esModule = true;
20+
__export(require("../../lib/build/recipe/session/ssr"));

rollup.config.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ export default [
1818
index: "lib/ts/index.ts",
1919
"ui-entry": "lib/ts/ui/index.tsx",
2020
session: "lib/ts/recipe/session/index.ts",
21+
nextjs: "lib/ts/nextjs.ts",
2122
sessionprebuiltui: "lib/ts/recipe/session/prebuiltui.tsx",
2223
emailverification: "lib/ts/recipe/emailverification/index.ts",
2324
emailverificationprebuiltui: "lib/ts/recipe/emailverification/prebuiltui.tsx",

0 commit comments

Comments
 (0)