Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update lint rules form import x #2

Merged
merged 5 commits into from
Sep 8, 2024
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
21 changes: 21 additions & 0 deletions .github/workflows/pkg-pr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Publish Any Commit
on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'

- name: Install dependencies
run: pnpm install

- run: pnpx pkg-pr-new publish
3 changes: 2 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
fixtures
fixtures
.github
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eruptionjs/config",
"version": "0.3.0",
"version": "0.4.0",
"description": "Opinionated configuration for EruptionJS projects",
"publishConfig": {
"access": "public"
Expand Down Expand Up @@ -60,9 +60,11 @@
"@types/react": "^18.3.4",
"concurrently": "^8.2.2",
"eslint": "^9.9.1",
"pkg-pr-new": "^0.0.24",
"prettier": "^3.3.3",
"react": "^18.3.1",
"typescript": "^5.5.4"
},
"prettier": "./src/prettier.js"
"prettier": "./src/prettier.js",
"packageManager": "[email protected]"
}
Loading