Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"access": "public",
"commit": true
}
33 changes: 33 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: CI

on:
pull_request:
push:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
ci:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Install pnpm
uses: pnpm/action-setup@v4

- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'pnpm'

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Run CI
run: pnpm run ci
2 changes: 1 addition & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import tseslint from 'typescript-eslint'

/** @type {import('eslint').Linter.Config[]} */
export default defineConfig(
{ ignores: ['coverage', 'public', 'dist', 'pnpm-lock.yaml'] },
{ ignores: ['**/coverage', '**/public', '**/dist', 'pnpm-lock.yaml'] },
pluginJs.configs.recommended,
...tseslint.configs.recommendedTypeChecked,
...tseslint.configs.stylisticTypeChecked,
Expand Down
9 changes: 8 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,13 @@
],
"author": "Mindenit Team",
"scripts": {
"local-release": "changeset version && changeset publish",
"prepare": "husky",
"lint": "eslint .",
"format": "oxfmt"
"format": "oxfmt",
"nurekit:build": "pnpm --filter nurekit build",
"ci": "oxfmt --check && pnpm nurekit:build",
"prepublishOnly": "pnpm ci"
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
Expand All @@ -21,15 +25,18 @@
"**/*": "oxfmt --no-error-on-unmatched-pattern"
},
"devDependencies": {
"@changesets/cli": "^2.31.1",
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@eslint/eslintrc": "^3.3.6",
"@eslint/js": "^10.0.1",
"eslint": "^10.7.0",
"eslint-plugin-oxfmt": "^0.13.0",
"globals": "^17.7.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.8",
"oxfmt": "^0.59.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.64.0"
},
"packageManager": "pnpm@10.22.0"
Expand Down
7 changes: 7 additions & 0 deletions packages/nurekit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @mindenit/nurekit

## 1.0.1

### Patch Changes

- 0ddce20: initial release
Loading
Loading