Skip to content

Commit 9c206e0

Browse files
authored
Merge pull request #13 from 7TogkID/session
Add Session Helper Context Support
2 parents 19d0532 + f780f46 commit 9c206e0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+12309
-6879
lines changed

.github/workflows/node.js.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,6 @@ jobs:
2626
with:
2727
node-version: ${{ matrix.node-version }}
2828
cache: 'npm'
29+
- run: npm install
2930
- run: npm ci
3031
- run: npm test

build/build.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ const addExtension = (extension: string = '.js', fileExtension: string = '.ts'):
1717
name: 'add-extension',
1818
setup(build: PluginBuild) {
1919
build.onResolve({ filter: /.*/ }, (args) => {
20+
2021
if (args.importer) {
2122
const p = path.join(args.resolveDir, args.path);
2223
let tsPath = `${p}${fileExtension}`;

build/generate-exports.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ const exportsMap: Record<string, string> = {
55
nunjucks: 'integration/nunjucks/index',
66
ejs: 'integration/ejs/index',
77
static: 'integration/static/index',
8+
session: 'integration/session/index',
89

910
// Middlewares
1011
cors: 'middleware/cors/index',

0 commit comments

Comments
 (0)