mirror of
https://github.com/HeyPuter/puter
synced 2024-11-14 22:06:00 +00:00
Migrate to JavaScript modules
This commit is contained in:
parent
ccdcead5e9
commit
5f18032737
2
build.js
2
build.js
@ -1,3 +1,3 @@
|
||||
const {build} = require("./utils.js")
|
||||
import { build } from "./utils.js"
|
||||
|
||||
build();
|
@ -1,8 +1,8 @@
|
||||
const express = require("express");
|
||||
const { generateDevHtml, build } = require("./utils.js");
|
||||
const { argv } = require('node:process');
|
||||
const chalk = require('chalk');
|
||||
const dotenv = require('dotenv');
|
||||
import express from "express";
|
||||
import { generateDevHtml, build } from "./utils.js";
|
||||
import { argv } from 'node:process';
|
||||
import chalk from 'chalk';
|
||||
import dotenv from 'dotenv';
|
||||
dotenv.config();
|
||||
|
||||
const app = express();
|
||||
@ -55,4 +55,4 @@ if(env === "dev"){
|
||||
app.use(express.static('./src/'));
|
||||
}
|
||||
|
||||
module.exports = app;
|
||||
export { app };
|
@ -5,6 +5,7 @@
|
||||
"license": "AGPL-3.0-only",
|
||||
"description": "Desktop environment in the browser!",
|
||||
"homepage": "https://puter.com",
|
||||
"type": "module",
|
||||
"directories": {
|
||||
"lib": "lib"
|
||||
},
|
||||
|
@ -51,4 +51,4 @@ const js_paths = [
|
||||
`/i18n/i18n.js`,
|
||||
]
|
||||
|
||||
module.exports = { lib_paths, css_paths, js_paths }
|
||||
export { lib_paths, css_paths, js_paths };
|
20
utils.js
20
utils.js
@ -16,15 +16,17 @@ GNU Affero General Public License for more details.
|
||||
You should have received a copy of the GNU Affero General Public License
|
||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
import { encode } from 'html-entities';
|
||||
import fs from 'fs';
|
||||
import path from 'path';
|
||||
import webpack from 'webpack';
|
||||
import CleanCSS from 'clean-css';
|
||||
import uglifyjs from 'uglify-js';
|
||||
import { lib_paths, css_paths, js_paths } from './src/static-assets.js';
|
||||
import { fileURLToPath } from 'url';
|
||||
|
||||
|
||||
const {encode} = require('html-entities');
|
||||
const fs = require('fs');
|
||||
const path = require('path');
|
||||
const webpack = require('webpack');
|
||||
const CleanCSS = require('clean-css');
|
||||
const uglifyjs = require('uglify-js');
|
||||
const {lib_paths, css_paths, js_paths} = require('./src/static-assets.js');
|
||||
// Polyfill __dirname, which doesn't exist in modules mode
|
||||
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
||||
|
||||
/**
|
||||
* Builds the application by performing various tasks such as cleaning the distribution directory,
|
||||
@ -348,4 +350,4 @@ function generateDevHtml(options){
|
||||
}
|
||||
|
||||
// export
|
||||
module.exports = {generateDevHtml, build};
|
||||
export { generateDevHtml, build };
|
||||
|
Loading…
Reference in New Issue
Block a user