Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Zyie committed May 9, 2024
1 parent 9c326c9 commit 0773c0b
Show file tree
Hide file tree
Showing 231 changed files with 18,134 additions and 16,493 deletions.
2 changes: 1 addition & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
.eslintrc.js
.eslintrc.cjs
**/dist
**/node_modules
35 changes: 35 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
module.exports = {
extends: ["@pixi/eslint-config"],
parserOptions: {
project: "./tsconfig.eslint.json",
ecmaVersion: 2020,
sourceType: "module",
},
rules: {
"spaced-comment": [1, "always", { markers: ["/"] }],
"@typescript-eslint/triple-slash-reference": [1, { path: "always" }],
"@typescript-eslint/consistent-type-imports": [
1,
{ disallowTypeAnnotations: false },
],
"@typescript-eslint/type-annotation-spacing": 1,
"@typescript-eslint/no-non-null-assertion": 0,
},
overrides: [
{
files: ["*.tests.ts", "*.test.ts"],
rules: {
"@typescript-eslint/no-unused-expressions": 0,
"@typescript-eslint/dot-notation": [
0,
{
allowPrivateClassPropertyAccess: true,
allowProtectedClassPropertyAccess: true,
allowIndexSignaturePropertyAccess: true,
},
],
"dot-notation": 0,
},
},
],
};
44 changes: 0 additions & 44 deletions .eslintrc.js

This file was deleted.

25 changes: 7 additions & 18 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,12 @@
name: CI

on:
push:
branches:
- main
pull_request:

jobs:
main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: nrwl/nx-set-shas@v3
- run: npm ci

- run: npx nx workspace-lint
- run: npm run lint
- run: npx nx affected --target=test:types --parallel=3
- uses: FedericoCarboni/setup-ffmpeg@v2
- run: npx nx affected --target=build --parallel=3
- run: npx nx affected --target=test --parallel=3 --ci
common:
name: Common
uses: play-co/github-workflows/.github/workflows/npm-library.yaml@main
secrets: inherit
with:
createRelease: false
15 changes: 0 additions & 15 deletions .github/workflows/release.yml

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,4 @@ Thumbs.db
.testInput
.testOutput
.assetpack
test/cache
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v18
20
3 changes: 3 additions & 0 deletions bin/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env node

import '../dist/cli/index.js';
File renamed without changes.
16 changes: 0 additions & 16 deletions jest.config.js

This file was deleted.

10 changes: 0 additions & 10 deletions lerna.json

This file was deleted.

37 changes: 0 additions & 37 deletions nx.json

This file was deleted.

Loading

0 comments on commit 0773c0b

Please sign in to comment.