@ryupold/vode 0.9.1 → 0.9.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -18,6 +18,7 @@ jobs:
18
18
  with:
19
19
  node-version: '20.x'
20
20
  registry-url: 'https://registry.npmjs.org'
21
+ - run: npm run build
21
22
  - run: npm publish --provenance --access public
22
23
  env:
23
24
  NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/index.js ADDED
@@ -0,0 +1,6 @@
1
+ export * from "./src/vode.js";
2
+ export * from "./src/vode-tags.js";
3
+ export * from "./src/api-call.js";
4
+ export * from "./src/html.js";
5
+ export * from "./src/helpers.js";
6
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyJpbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLG9CQUFvQixDQUFDO0FBQ25DLGNBQWMsbUJBQW1CLENBQUM7QUFDbEMsY0FBYyxlQUFlLENBQUM7QUFDOUIsY0FBYyxrQkFBa0IsQ0FBQyJ9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ryupold/vode",
3
- "version": "0.9.1",
3
+ "version": "0.9.3",
4
4
  "description": "Small web framework for minimal websites",
5
5
  "author": "Michael Scherbakow (ryupold)",
6
6
  "license": "MIT",
package/tsconfig.json CHANGED
@@ -1,14 +1,26 @@
1
1
  {
2
2
  "compilerOptions": {
3
3
  "target": "es2024",
4
- "module": "nodenext",
5
- "moduleResolution": "node16",
4
+ "module": "preserve",
5
+ "moduleResolution": "bundler",
6
+ "rootDir": ".",
7
+ "composite": true,
8
+ "declarationMap": true,
9
+ "removeComments": true,
6
10
  "declaration": true,
11
+ "inlineSourceMap": true,
7
12
  "strict": true,
13
+ "allowSyntheticDefaultImports": true,
14
+ "strictBindCallApply": true,
15
+ "strictFunctionTypes": true,
16
+ "strictPropertyInitialization": true,
17
+ "strictNullChecks": true,
8
18
  "allowJs": false,
9
19
  "skipLibCheck": true,
10
20
  "noImplicitReturns": true,
11
- "noFallthroughCasesInSwitch": true
21
+ "noFallthroughCasesInSwitch": true,
22
+ "downlevelIteration": true,
23
+ "isolatedModules": true
12
24
  },
13
25
  "include": [
14
26
  "./index.ts",