Skip to content

Commit

Permalink
Pixi renderer!
Browse files Browse the repository at this point in the history
This commit adds the Pixi renderer. It also contains the new layouter
(spcl#34), however that one will land in a different PR.
  • Loading branch information
N2D4 committed Aug 25, 2021
1 parent c573aa8 commit c6c74e8
Show file tree
Hide file tree
Showing 125 changed files with 20,763 additions and 16,908 deletions.
3 changes: 2 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"@babel/preset-typescript"
],
"plugins": [
"@babel/plugin-transform-runtime"
"@babel/plugin-transform-runtime",
"@babel/plugin-proposal-class-properties"
]
}
53 changes: 38 additions & 15 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,24 +1,47 @@
module.exports = {
"env": {
"browser": true,
"es2021": true
'env': {
'browser': true,
'es2021': true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
'extends': [
'eslint:recommended',
'plugin:@typescript-eslint/recommended'
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
'parser': '@typescript-eslint/parser',
'parserOptions': {
'ecmaVersion': 12,
'sourceType': 'module'
},
"plugins": [
"@typescript-eslint"
'plugins': [
'@typescript-eslint'
],
"ignorePatterns": ["**/*.js"],
"rules": {
"@typescript-eslint/no-explicit-any": "off",
'ignorePatterns': ['**/*.js'],
'rules': {
'@typescript-eslint/no-explicit-any': 'off',
"@typescript-eslint/no-non-null-assertion": "off",
"prefer-arrow-callback": "error",
'indent': [
'error',
4,
{
'SwitchCase': 1,
}
],
'linebreak-style': [
'error',
'unix'
],
'quotes': [
'error',
'single'
],
'semi': [
'error',
'always'
],
'prefer-arrow-callback': 'error',
'@typescript-eslint/no-non-null-assertion': 'off',
'camelcase': 'error',
'@typescript-eslint/ban-ts-comment': 'off',
}
};
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
.DS_Store

# Logs
logs
*.log
Expand Down
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ npm install
npm run watch
```

Before committing your changes, run `npm install && npm run build-prod` to build
a production bundle. GitHub Actions will fail if the production bundle in your
commit is not up-to-date. If the CI is failing, make sure that you run
`npm install` before building as the dependencies might've changed.
To launch a local server with hot reloading, replace the second command with `npm run serve`.

Before committing your changes, run `npm install && npm run build-prod` to build a production bundle. GitHub Actions will fail if the production bundle in your commit is not up-to-date. If the CI is failing, make sure that you run `npm install` before building as the dependencies might've changed.
2 changes: 0 additions & 2 deletions dist/306.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/306.js.map

This file was deleted.

2 changes: 0 additions & 2 deletions dist/626.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/626.js.map

This file was deleted.

2 changes: 0 additions & 2 deletions dist/641.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/641.js.map

This file was deleted.

2 changes: 0 additions & 2 deletions dist/689.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/689.js.map

This file was deleted.

2 changes: 0 additions & 2 deletions dist/764.js

This file was deleted.

1 change: 0 additions & 1 deletion dist/764.js.map

This file was deleted.

3 changes: 0 additions & 3 deletions dist/main.js

This file was deleted.

14 changes: 0 additions & 14 deletions dist/main.js.LICENSE.txt

This file was deleted.

1 change: 0 additions & 1 deletion dist/main.js.map

This file was deleted.

3 changes: 0 additions & 3 deletions dist/sdfv.js

This file was deleted.

14 changes: 0 additions & 14 deletions dist/sdfv.js.LICENSE.txt

This file was deleted.

1 change: 0 additions & 1 deletion dist/sdfv.js.map

This file was deleted.

Loading

0 comments on commit c6c74e8

Please sign in to comment.