Merge pull request #6 from LoredDev/changeset-release/main

🦋 Release branch
This commit is contained in:
Guz
2024-01-18 03:53:55 +00:00
committed by GitHub
9 changed files with 41 additions and 23 deletions

View File

@@ -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
View File

0
.husky/prepare-commit-msg Normal file → Executable file
View File

4
.lintstagedrc Normal file
View File

@@ -0,0 +1,4 @@
{
"gitDir": "./.git",
"*": "eslint --fix"
}

View File

@@ -1,5 +1,11 @@
# lilbetter.js
## 0.0.2
### Patch Changes
- 4bf4326: Fix github workflow
## 0.0.1
### Patch Changes

View File

@@ -1,23 +1,25 @@
{
"compilerOptions": {
"checkJs": true,
"allowJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"module": "ES2022",
"target": "ES2022",
"alwaysStrict": true
},
"include": [
"./src/**/*.js",
"./eslint.config.js"
],
"exclude": [
"./node_modules/**",
".dist"
]
"compilerOptions": {
"checkJs": true,
"allowJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"module": "ES2022",
"target": "ES2022",
"alwaysStrict": true
},
"include": [
"./src/**/*.js",
"./test/**/*.js",
"./eslint.config.js",
"./commitlint.config.cjs"
],
"exclude": [
"./node_modules/**",
".dist"
]
}

View File

@@ -1,6 +1,6 @@
{
"name": "lilbetter.js",
"version": "0.0.1",
"version": "0.0.2",
"description": "",
"main": "./src/index.js",
"scripts": {

View File

@@ -0,0 +1,5 @@
/*
* Placeholder file
*/
// eslint-disable-next-line no-console
console.log('Hello, world!');

View File

@@ -1,3 +1,4 @@
// eslint-disable-next-line n/no-unpublished-import
import { expect, test } from 'vitest';
test('placeholder', () => {