Я пытаюсь сделать быстрый старт для Ava Electron Webpack и три, но что-то пошло не так в этом процессе.
вот хранилище проекта:
https://github.com/etiennerin/ecsy-three-electron-ava-quick-start
Просто пытаясь использовать мой проект, набрав npm run dev
, я получаю следующее сообщение об ошибке:
Я использую windows.
Я думаю, что ошибка может быть связана с моей конфигурацией webpack, которая, как ни странно, работала, потому что я попробовал какое-то npm -обновление:
'use strict'
import { app, BrowserWindow } from 'electron'
import * as path from 'path'
import { format as formatUrl } from 'url'
import * as THREE from '../../node_modules/three/build/three.module.js';
//import {World} from '../../node_modules/ecsy/build/ecsy.module.js';
const isDevelopment = process.env.NODE_ENV !== 'production'
// global reference to mainWindow (necessary to prevent window from being garbage collected)
let mainWindow
function createMainWindow() {
const window = new BrowserWindow({webPreferences: {nodeIntegration: true}})
if (isDevelopment) {
window.webContents.openDevTools()
}
if (isDevelopment) {
window.loadURL(`http://localhost:${process.env.ELECTRON_WEBPACK_WDS_PORT}`)
}
else {
window.loadURL(formatUrl({
pathname: path.join(__dirname, 'index.html'),
protocol: 'file',
slashes: true
}))
}
window.on('closed', () => {
mainWindow = null
})
window.webContents.on('devtools-opened', () => {
window.focus()
setImmediate(() => {
window.focus()
})
})
return window
}
// quit application when all windows are closed
app.on('window-all-closed', () => {
// on macOS it is common for applications to stay open until the user explicitly quits
if (process.platform !== 'darwin') {
app.quit()
}
})
app.on('activate', () => {
// on macOS it is common to re-create a window even after all windows have been closed
if (mainWindow === null) {
mainWindow = createMainWindow()
}
})
// create main BrowserWindow when electron is ready
app.on('ready', () => {
mainWindow = createMainWindow()
})
и мой последний пакет. json:
{
"name": "electron-webpack-quick-start",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "electron-webpack dev",
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"dist": "yarn compile && electron-builder",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null",
"test": "ava"
},
"dependencies": {
"source-map-support": "^0.5.16"
},
"ava": {
"files": [
"spec/**/*"
],
"require": [
"esm"
]
},
"devDependencies": {
"ava": "^3.5.1",
"ecsy": "^0.2.3",
"electron": "8.1.1",
"electron-builder": "^22.4.1",
"electron-webpack": "^2.7.4",
"esm": "^3.2.25",
"html-loader": "^1.0.0",
"three": "^0.112.1",
"webpack": "^4.42.0"
}
}
Большое спасибо за каждый совет!