Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
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:
|
||||
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
|
||||
env:
|
||||
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"
|
||||
}
|
||||
@@ -1,5 +1,11 @@
|
||||
# lilbetter.js
|
||||
|
||||
## 0.0.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 4bf4326: Fix github workflow
|
||||
|
||||
## 0.0.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -14,7 +14,9 @@
|
||||
},
|
||||
"include": [
|
||||
"./src/**/*.js",
|
||||
"./eslint.config.js"
|
||||
"./test/**/*.js",
|
||||
"./eslint.config.js",
|
||||
"./commitlint.config.cjs"
|
||||
],
|
||||
"exclude": [
|
||||
"./node_modules/**",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "lilbetter.js",
|
||||
"version": "0.0.1",
|
||||
"version": "0.0.2",
|
||||
"description": "",
|
||||
"main": "./src/index.js",
|
||||
"scripts": {
|
||||
|
||||
@@ -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';
|
||||
|
||||
test('placeholder', () => {
|
||||
|
||||
Reference in New Issue
Block a user