diff --git a/.customink/catalog.yaml b/.customink/catalog.yaml index 9ca27c26..4b7241bc 100644 --- a/.customink/catalog.yaml +++ b/.customink/catalog.yaml @@ -1,6 +1,6 @@ name: html-react-parser -owner: funnelcake # team definitions at https://app.opslevel.com/teams +owner: product-pages # team definitions at https://app.opslevel.com/teams purpose: # multiple choice # - app diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 8ee1cd47..8bcd6ce4 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,4 +1,4 @@ -* @customink/funnelcake +* @customink/product-pages /package-lock.json /package.json diff --git a/.github/workflows/assign-reviewer.yml b/.github/workflows/assign-reviewer.yml deleted file mode 100644 index e97cb47c..00000000 --- a/.github/workflows/assign-reviewer.yml +++ /dev/null @@ -1,18 +0,0 @@ -name: Assign Reviewer -on: pull_request_target - -jobs: - assign-reviewer: - runs-on: ubuntu-latest - steps: - - name: Assign reviewer - if: > - startsWith(github.event.pull_request.title, 'build(deps-dev): bump ') == false && - contains(github.event.action, 'opened') - run: > - gh pr edit ${{ github.event.pull_request.html_url }} - --add-assignee ${{ github.event.pull_request.user.login }} - --add-reviewer remarkablemark - env: - GITHUB_TOKEN: ${{ github.token }} - continue-on-error: true diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bd0ef07f..e172880d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,12 +31,3 @@ jobs: uses: codecov/codecov-action@v4 env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - - - name: Run module tests - run: npm run test:esm - - - name: Run integration tests - run: npm run test:integration - - - name: Run benchmark - run: npm run benchmark diff --git a/.github/workflows/size-limit.yml b/.github/workflows/size-limit.yml deleted file mode 100644 index f4560f4a..00000000 --- a/.github/workflows/size-limit.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: size -on: - pull_request: - branches: - - master -jobs: - size: - runs-on: ubuntu-latest - env: - CI_JOB_NUMBER: 1 - - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - - name: Size Limit - uses: andresz1/size-limit-action@v1 - with: - github_token: ${{ github.token }} diff --git a/.nvmrc b/.nvmrc index 209e3ef4..2bd5a0a9 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -20 +22 diff --git a/package.json b/package.json index 76608a6c..22474276 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,7 @@ "build:cjs": "tsc --project tsconfig.build.json", "build:umd": "rollup --config --failAfterWarnings", "clean": "rm -rf coverage lib dist", - "lint": "eslint --ignore-path .gitignore --ignore-pattern /examples/ .", + "lint": "eslint --ignore-path .gitignore --ignore-pattern /examples/ --ignore-pattern /lib/ .", "lint:fix": "npm run lint -- --fix", "lint:tsc": "tsc --noEmit", "prepare": "husky",