Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b76750bbe9 | ||
|
|
d003151b0f | ||
|
|
731ff705a2
|
||
|
|
138dc210e1
|
||
|
|
65a4f3de22 | ||
|
|
5581ae7841 | ||
|
|
8266d1e67a | ||
|
|
7f49118630
|
||
|
|
5626da8b78
|
||
|
|
53d7c3b408
|
||
|
|
49832f676a
|
||
|
|
b97ca55a68
|
||
|
|
4bf4326da8
|
||
|
|
472d01ec35 |
2
.github/workflows/release-preview.yml
vendored
2
.github/workflows/release-preview.yml
vendored
@@ -11,7 +11,7 @@ on:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
release:
|
release:
|
||||||
if: ${{ github.event.workflow_run.conclusion == 'success' && github.repository == 'loreddev/marknow' }}
|
if: ${{ github.event.workflow_run.conclusion == 'success' && github.repository == 'loreddev/lilbetter.js' }}
|
||||||
name: Release preview
|
name: Release preview
|
||||||
env:
|
env:
|
||||||
HUSKY: 0
|
HUSKY: 0
|
||||||
|
|||||||
0
.husky/pre-commit
Normal file → Executable file
0
.husky/pre-commit
Normal file → Executable file
0
.husky/prepare-commit-msg
Normal file → Executable file
0
.husky/prepare-commit-msg
Normal file → Executable file
4
.lintstagedrc
Normal file
4
.lintstagedrc
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"gitDir": "./.git",
|
||||||
|
"*": "eslint --fix"
|
||||||
|
}
|
||||||
12
CHANGELOG.md
12
CHANGELOG.md
@@ -1,5 +1,17 @@
|
|||||||
# lilbetter.js
|
# lilbetter.js
|
||||||
|
|
||||||
|
## 0.0.3
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- 138dc21: Populated package.json
|
||||||
|
|
||||||
|
## 0.0.2
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- 4bf4326: Fix github workflow
|
||||||
|
|
||||||
## 0.0.1
|
## 0.0.1
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
|||||||
@@ -13,8 +13,10 @@
|
|||||||
"alwaysStrict": true
|
"alwaysStrict": true
|
||||||
},
|
},
|
||||||
"include": [
|
"include": [
|
||||||
"./src/**/*.js",
|
"./src/**/*",
|
||||||
"./eslint.config.js"
|
"./test/**/*.js",
|
||||||
|
"./eslint.config.js",
|
||||||
|
"./commitlint.config.cjs"
|
||||||
],
|
],
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"./node_modules/**",
|
"./node_modules/**",
|
||||||
|
|||||||
29
package.json
29
package.json
@@ -1,8 +1,25 @@
|
|||||||
{
|
{
|
||||||
"name": "lilbetter.js",
|
"name": "lilbetter.js",
|
||||||
"version": "0.0.1",
|
"version": "0.0.3",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "./src/index.js",
|
"main": "./src/index.js",
|
||||||
|
"browser": "./src/index.js",
|
||||||
|
"source": "./src/index.js",
|
||||||
|
"module": "./src/index.js",
|
||||||
|
"homepage": "https://github.com/LoredDev/lilbetter.js",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/LoredDev/lilbetter.js"
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
"import": "./src/index.js",
|
||||||
|
"default": "./src/index.js",
|
||||||
|
"types": "./src/index.d.ts"
|
||||||
|
},
|
||||||
|
"files": [
|
||||||
|
"./src/**/*.js",
|
||||||
|
"./src/**/*.d.ts"
|
||||||
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "vitest",
|
"test": "vitest",
|
||||||
"prepare": "husky install",
|
"prepare": "husky install",
|
||||||
@@ -12,8 +29,16 @@
|
|||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
"author": "",
|
"author": {
|
||||||
|
"email": "contact.guz013@gmail.com",
|
||||||
|
"name": "Gustavo \"Guz\" L. de Mello",
|
||||||
|
"url": "https://guz.one"
|
||||||
|
},
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=20",
|
||||||
|
"pnpm": ">=8"
|
||||||
|
},
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
},
|
},
|
||||||
|
|||||||
6
src/index.d.ts
vendored
Normal file
6
src/index.d.ts
vendored
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
|
||||||
|
interface Test {
|
||||||
|
name: string,
|
||||||
|
}
|
||||||
|
|
||||||
|
export default Test;
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
/*
|
||||||
|
* Placeholder file
|
||||||
|
*/
|
||||||
|
// eslint-disable-next-line no-console
|
||||||
|
console.log('Hello, world!');
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
// eslint-disable-next-line n/no-unpublished-import
|
||||||
import { expect, test } from 'vitest';
|
import { expect, test } from 'vitest';
|
||||||
|
|
||||||
test('placeholder', () => {
|
test('placeholder', () => {
|
||||||
|
|||||||
Reference in New Issue
Block a user