Skip to content

Commit

Permalink
Merge pull request #37 from oe/feat/update-cheerio
Browse files Browse the repository at this point in the history
Feat/update cheerio
  • Loading branch information
oe authored Mar 2, 2024
2 parents 8e6cf7b + ac85301 commit 8958596
Show file tree
Hide file tree
Showing 20 changed files with 3,778 additions and 4,532 deletions.
5 changes: 0 additions & 5 deletions .babelrc

This file was deleted.

11 changes: 11 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/* eslint-env node */
module.exports = {
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
env: {
node: true,
},
ignorePatterns: ['scripts'],
root: true,
}
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@


ko_fi: esaiya
github: oe
35 changes: 35 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# This is a basic workflow to help you get started with Actions

name: CI

# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches:
- master
- feat/*
pull_request:
branches: [ master ]

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '18.x'

- name: install deps
run: yarn

- name: build lib
run: yarn build
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ npm-debug.log
.idea
.vscode
.rpt2_cache
.parcel-cache
dist
10 changes: 0 additions & 10 deletions .npmignore

This file was deleted.

10 changes: 0 additions & 10 deletions .travis.yml

This file was deleted.

261 changes: 0 additions & 261 deletions dist/truncate.cjs.js

This file was deleted.

Loading

0 comments on commit 8958596

Please sign in to comment.