Skip to content

Commit 6988b01

Browse files
committed
v2 reinit
1 parent 35aa404 commit 6988b01

18 files changed

+3842
-6106
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Change Log
2+
3+
All notable changes to the "vite-vanilla-ts-lib-starter" project will be documented in this file.
4+
5+
## [0.0.1] - 2023-01-18
6+
7+
- Update all packages to the latest versions (update to vite 4.x)
8+
9+
## [0.0.1] - 2022-09-08
10+
11+
- Update all packages to the latest versions (update to vite 3.x)
12+
13+
## [0.0.0] - 2022-03-28
14+
15+
- Initial release

LICENSE LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 Matronator
3+
Copyright (c) 2023 Matronator
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
![npm](https://img.shields.io/npm/dw/axette)
88
![NPM](https://img.shields.io/npm/l/axette)
99
![npm dev dependency version](https://img.shields.io/npm/dependency-version/axette/dev/typescript)
10+
[![Buy us a tree](https://img.shields.io/badge/Treeware-%F0%9F%8C%B3-lightgreen)](https://plant.treeware.earth/matronator/axette)
1011

1112
[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/U7U2MDBC)
1213

@@ -207,6 +208,10 @@ Huge thanks to [Matouš Trča](https://github.com/blackhexagon) from [@Visualio]
207208

208209
## License
209210

211+
This package is [Treeware](https://treeware.earth). If you use it in production, then we ask that you [**buy the world a tree**](https://plant.treeware.earth/matronator/axette) to thank us for our work. By contributing to the Treeware forest you'll be creating employment for local families and restoring wildlife habitats.
212+
213+
---
214+
210215
MIT License
211216

212217
Copyright (c) 2021 Matronator

dist/index.js

-8
This file was deleted.

dts-bundle-generator.config.ts

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
const packageJson = require("./package.json");
2+
3+
const getPackageName = () => {
4+
return packageJson.name;
5+
};
6+
7+
const config = {
8+
entries: [
9+
{
10+
filePath: "./src/index.ts",
11+
outFile: `./dist/${getPackageName()}.d.ts`,
12+
noCheck: false,
13+
},
14+
],
15+
};
16+
17+
module.exports = config;

favicon.svg

+15
Loading

index.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Vite App</title>
8+
</head>
9+
<body>
10+
<div id="app"></div>
11+
<script type="module" src="/src/index.ts"></script>
12+
</body>
13+
</html>

0 commit comments

Comments
 (0)