Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support sequences tiles #59

Merged
merged 14 commits into from
Jan 10, 2025
13 changes: 8 additions & 5 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
{
"presets": [
["env", {
"modules": false
}],
"react"
"presets": [
[
"@babel/preset-env",
{
"modules": false
}
],
"@babel/preset-react"
]
}
2 changes: 1 addition & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [18.x]

steps:
- uses: actions/checkout@v3
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/npmpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: Node.js Package
on:
push:
tags:
- "v*"
- 'v*'

jobs:
build:
Expand All @@ -15,7 +15,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
- run: sudo apt-get install xvfb
- run: npm ci
- run: npm run build --if-present
Expand All @@ -30,7 +30,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: npm run prerelease
Expand Down
7 changes: 3 additions & 4 deletions karma.conf.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var webpackConfig = require('./webpack.config.js');
require('babel-polyfill');

module.exports = function(config) {
module.exports = function (config) {
config.set({
basePath: '',
frameworks: ['jasmine', 'server-side'],
Expand All @@ -10,7 +10,7 @@ module.exports = function(config) {
'node_modules/babel-polyfill/dist/polyfill.js',
'node_modules/react/umd/react.development.js',
'node_modules/react-dom/umd/react-dom.development.js',
'node_modules/pixi.js/dist/pixi.js',
'node_modules/pixi.js/dist/browser/pixi.js',
'node_modules/react-bootstrap/dist/react-bootstrap.js',
'node_modules/bootstrap/dist/css/bootstrap.min.css',
'test/SVGExportTests.js',
Expand All @@ -35,9 +35,8 @@ module.exports = function(config) {
'karma-jasmine',
'karma-sourcemap-loader',
'karma-chrome-launcher',
'karma-phantomjs-launcher',
'karma-server-side',
'karma-verbose-reporter'
'karma-verbose-reporter',
],

babelPreprocessor: {
Expand Down
Loading
Loading