Skip to content

Commit e8609f0

Browse files
test: Add no-framework integration
1 parent a31faf7 commit e8609f0

19 files changed

Lines changed: 136 additions & 0 deletions

integrations/vanilla/package.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "vanilla-integration",
3+
"private": true,
4+
"type": "module",
5+
"scripts": {
6+
"test:build": "vite build && vitest"
7+
},
8+
"devDependencies": {
9+
"@tanstack/config": "<1.0.0"
10+
}
11+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
"use strict";
2+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3+
const utils = require("./utils.cjs");
4+
exports.optionalChaining = utils.optionalChaining;
5+
//# sourceMappingURL=index.cjs.map

integrations/vanilla/snap/cjs/index.cjs.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './utils';
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
"use strict";
2+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
3+
const optionalChaining = (data) => {
4+
var _a;
5+
return (_a = data == null ? void 0 : data.maybe) == null ? void 0 : _a.property;
6+
};
7+
exports.optionalChaining = optionalChaining;
8+
//# sourceMappingURL=utils.cjs.map

integrations/vanilla/snap/cjs/utils.cjs.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export declare const optionalChaining: (data: any) => any;
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './utils';

integrations/vanilla/snap/esm/index.js

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

integrations/vanilla/snap/esm/index.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)