@technote-space/game-interface
Advanced tools
Comparing version 0.4.0 to 0.4.1
{ | ||
"name": "@technote-space/game-interface", | ||
"version": "0.4.0", | ||
"version": "0.4.1", | ||
"description": "", | ||
@@ -12,4 +12,3 @@ "author": { | ||
"keywords": [ | ||
"github", | ||
"github actions" | ||
"genetic algorithm" | ||
], | ||
@@ -37,3 +36,3 @@ "homepage": "https://github.com/technote-space/game-interface", | ||
"@types/jest": "^26.0.4", | ||
"@types/node": "^14.0.19", | ||
"@types/node": "^14.0.20", | ||
"@typescript-eslint/eslint-plugin": "^3.6.0", | ||
@@ -40,0 +39,0 @@ "@typescript-eslint/parser": "^3.6.0", |
@@ -1,6 +0,6 @@ | ||
const webpack = require('webpack'); | ||
const path = require('path'); | ||
const NODE_ENV = process.env.NODE_ENV; | ||
const PROJECT_ROOT = path.resolve(__dirname, '../../..'); | ||
const OUTPUT_DIR = path.resolve(PROJECT_ROOT, 'build'); | ||
const webpack = require('webpack'); | ||
const path = require('path'); | ||
const NODE_ENV = process.env.NODE_ENV; | ||
const PROJECT_ROOT = path.resolve(__dirname, '../../..'); | ||
const OUTPUT_DIR = path.resolve(PROJECT_ROOT, 'build'); | ||
@@ -28,5 +28,7 @@ module.exports = { | ||
filename: '[name].js', | ||
library: 'LearningGame', | ||
libraryTarget: 'window', | ||
}, | ||
resolve: { | ||
mainFields: ['browser', 'main', 'module'], | ||
mainFields: ['main', 'module'], | ||
extensions: ['.js', '.jsx', '.ts', '.tsx', '.json'], | ||
@@ -33,0 +35,0 @@ }, |
18764
307