17 Commits

Author SHA1 Message Date
Guz
5581ae7841 Merge pull request #6 from LoredDev/changeset-release/main
🦋 Release branch
2024-01-18 03:53:55 +00:00
github-actions[bot]
8266d1e67a ci: 👷🦋 version packages 2024-01-18 03:53:17 +00:00
Gustavo "Guz" L. de Mello
7f49118630 fix: 🐛 typo 2024-01-18 00:52:22 -03:00
Gustavo "Guz" L. de Mello
5626da8b78 chore: 🔧 fix github actions on lint
(I hate javascript ecosystem and workflow so much)
2024-01-18 00:50:34 -03:00
Gustavo "Guz" L. de Mello
53d7c3b408 chore: 🔧 make hooks executable 2024-01-18 00:45:38 -03:00
Gustavo "Guz" L. de Mello
49832f676a chore: 🔧 lintstaged config and add test files 2024-01-18 00:45:04 -03:00
Gustavo "Guz" L. de Mello
b97ca55a68 chore: placeholder index.js 2024-01-18 00:40:23 -03:00
Gustavo "Guz" L. de Mello
4bf4326da8 fix: github workflow 2024-01-18 00:38:10 -03:00
github-actions[bot]
472d01ec35 ci: 👷 update dev branch 2024-01-18 03:36:34 +00:00
Guz
c3e19c8ee6 Merge pull request #5 from LoredDev/changeset-release/main
🦋 Release branch
2024-01-18 03:35:58 +00:00
github-actions[bot]
5e4c8f1088 ci: 👷🦋 version packages 2024-01-18 03:34:57 +00:00
Gustavo "Guz" L. de Mello
2fe67cdd69 chore: changeset 2024-01-18 00:34:17 -03:00
Guz
3f79208d2d Merge pull request #2 from LoredDev/renovate/actions-cache-4.x
chore(deps): update actions/cache action to v4
2024-01-18 03:27:53 +00:00
Gustavo "Guz" L. de Mello
ad436abc95 fix: @eslegant/js eslint 2024-01-18 00:26:34 -03:00
renovate[bot]
e8adad9d6f chore(deps): update actions/cache action to v4 2024-01-18 03:24:11 +00:00
Guz
ab3297cac5 Merge pull request #1 from LoredDev/renovate/configure
chore: Configure Renovate
2024-01-18 03:23:57 +00:00
renovate[bot]
d9b59beff4 Add renovate.json 2024-01-18 03:21:04 +00:00
12 changed files with 56 additions and 24 deletions

View File

@@ -36,7 +36,7 @@ runs:
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- name: Setup pnpm cache - name: Setup pnpm cache
uses: actions/cache@v3 uses: actions/cache@v4
with: with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }} path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}

View File

@@ -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
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"
}

13
CHANGELOG.md Normal file
View File

@@ -0,0 +1,13 @@
# lilbetter.js
## 0.0.2
### Patch Changes
- 4bf4326: Fix github workflow
## 0.0.1
### Patch Changes
- 2fe67cd: Created the boilerplate and package setup

View File

@@ -1,3 +1,4 @@
// eslint-disable-next-line n/no-unpublished-import
import { configs, defineConfig, presets } from '@eslegant/js'; import { configs, defineConfig, presets } from '@eslegant/js';
export default defineConfig([ export default defineConfig([

View File

@@ -14,7 +14,9 @@
}, },
"include": [ "include": [
"./src/**/*.js", "./src/**/*.js",
"./eslint.config.js" "./test/**/*.js",
"./eslint.config.js",
"./commitlint.config.cjs"
], ],
"exclude": [ "exclude": [
"./node_modules/**", "./node_modules/**",

View File

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

6
renovate.json Normal file
View File

@@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
]
}

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'; import { expect, test } from 'vitest';
test('placeholder', () => { test('placeholder', () => {