-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Inflint now requires ESM module to support the community to change CJS to ESM
- Loading branch information
tal-rofe
committed
Apr 14, 2023
1 parent
185245d
commit 45a06ea
Showing
71 changed files
with
1,766 additions
and
1,376 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,5 @@ | |
"ts-loader", | ||
"ts-node", | ||
"rimraf" | ||
], | ||
"skipMissing": true | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,2 @@ | ||
.eslintrc.js | ||
.prettierrc.js | ||
commitlint.config.js | ||
lint-staged.config.js | ||
release.config.js | ||
jest.config.js | ||
czvinyl.config.ts | ||
webpack.config.ts | ||
inflint.config.ts | ||
.eslintrc.cjs | ||
dist | ||
scripts | ||
bin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,16 @@ | ||
name: Lint Commit Messages | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
commitlint: | ||
name: Commitlint | ||
permissions: | ||
contents: read | ||
pull-requests: read | ||
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: wagoid/commitlint-github-action@v4 | ||
- uses: wagoid/commitlint-github-action@v5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,91 +9,91 @@ permissions: | |
|
||
jobs: | ||
depcheck: | ||
name: Testing Depcheck | ||
name: Depcheck | ||
|
||
runs-on: [self-hosted, Linux, X64, integration] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup Node environment | ||
uses: Exlint/[email protected].4 | ||
uses: Exlint/[email protected].6 | ||
with: | ||
node-version: 18.13.0 | ||
node-version: 18.15.0 | ||
package-manager: pnpm | ||
package-manager-version: 7.26.3 | ||
package-manager-version: 8.1.0 | ||
|
||
- name: Test Depcheck | ||
run: pnpm depcheck | ||
|
||
inflint: | ||
name: Testing Inflint | ||
name: Inflint | ||
|
||
runs-on: [self-hosted, Linux, X64, integration] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup Node environment | ||
uses: Exlint/[email protected].4 | ||
uses: Exlint/[email protected].6 | ||
with: | ||
node-version: 18.13.0 | ||
node-version: 18.15.0 | ||
package-manager: pnpm | ||
package-manager-version: 7.26.3 | ||
package-manager-version: 8.1.0 | ||
|
||
- name: Test Inflint | ||
run: pnpm inflint | ||
|
||
typescript: | ||
name: Testing TypeScript | ||
name: TypeScript | ||
|
||
runs-on: [self-hosted, Linux, X64, integration] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup Node environment | ||
uses: Exlint/[email protected].4 | ||
uses: Exlint/[email protected].6 | ||
with: | ||
node-version: 18.13.0 | ||
node-version: 18.15.0 | ||
package-manager: pnpm | ||
package-manager-version: 7.26.3 | ||
package-manager-version: 8.1.0 | ||
|
||
- name: Test TypeScript | ||
run: pnpm type-check | ||
|
||
prettier: | ||
name: Testing Prettier | ||
name: Prettier | ||
|
||
runs-on: [self-hosted, Linux, X64, integration] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup Node environment | ||
uses: Exlint/[email protected].4 | ||
uses: Exlint/[email protected].6 | ||
with: | ||
node-version: 18.13.0 | ||
node-version: 18.15.0 | ||
package-manager: pnpm | ||
package-manager-version: 7.26.3 | ||
package-manager-version: 8.1.0 | ||
|
||
- name: Test Prettier | ||
run: pnpm prettier | ||
|
||
eslint: | ||
name: Testing ESLint | ||
name: ESLint | ||
|
||
runs-on: [self-hosted, Linux, X64, integration] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup Node environment | ||
uses: Exlint/[email protected].4 | ||
uses: Exlint/[email protected].6 | ||
with: | ||
node-version: 18.13.0 | ||
node-version: 18.15.0 | ||
package-manager: pnpm | ||
package-manager-version: 7.26.3 | ||
package-manager-version: 8.1.0 | ||
|
||
- name: Test ESLint | ||
run: pnpm lint | ||
|
||
dist: | ||
name: Testing dist | ||
build: | ||
name: Build | ||
|
||
runs-on: [self-hosted, Linux, X64, integration] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup Node environment | ||
uses: Exlint/[email protected].4 | ||
uses: Exlint/[email protected].6 | ||
with: | ||
node-version: 18.13.0 | ||
node-version: 18.15.0 | ||
package-manager: pnpm | ||
package-manager-version: 7.26.3 | ||
package-manager-version: 8.1.0 | ||
|
||
- name: Test dist | ||
run: pnpm dist | ||
- name: Test build | ||
run: pnpm build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,24 +7,24 @@ on: | |
jobs: | ||
release: | ||
name: Release version | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup Node environment | ||
uses: Exlint/[email protected].4 | ||
uses: Exlint/[email protected].6 | ||
with: | ||
node-version: 18.13.0 | ||
package-manager: pnpm | ||
package-manager-version: 7.26.3 | ||
should-cache: false | ||
node-version: 14 | ||
package-manager: pnpm | ||
package-manager-version: 8.1.0 | ||
|
||
- name: Build dist folder | ||
run: pnpm dist | ||
run: pnpm build | ||
|
||
- name: Semantic Release | ||
uses: cycjimmy/semantic-release-action@v3 | ||
uses: cycjimmy/semantic-release-action@v3.4.0 | ||
with: | ||
extra_plugins: | | ||
@semantic-release/changelog | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
/node_modules | ||
/coverage | ||
/dist | ||
|
||
*.tsbuildinfo | ||
node_modules | ||
coverage | ||
dist | ||
*.tsbuildinfo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
save-exact=true | ||
stream=true | ||
strict-peer-dependencies=false | ||
save-exact="true" | ||
stream="true" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
node_modules | ||
dist | ||
coverage | ||
README.md | ||
README.md | ||
pnpm-lock.yaml |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Update From GitHub", | ||
"type": "shell", | ||
"command": "git fetch", | ||
"group": "none", | ||
"presentation": { | ||
"reveal": "always", | ||
"panel": "new" | ||
}, | ||
"runOptions": { | ||
"runOn": "folderOpen" | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.