Skip to content

Commit e6fbce6

Browse files
committed
Updated ./build dependencies
Updated all build dependencies to the latest versions (including Electron, Project Foundation and Gulp) and implemented ESM modules to refactor and share constants between the Main and Render processes.
1 parent 622c3b5 commit e6fbce6

27 files changed

+17563
-13282
lines changed

README.md

+3-7
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ For more information see the [**Example Code**](https://github.com/gmattie/Data-
4141

4242
Data Pixels Playground is a lightweight, cross-platform, desktop application for **Windows**, **Mac** and **Linux**, which may be used to write and execute DataPixels.js instances for previewing and testing purposes.
4343

44-
The application features **built-in example code** via the *Help* menu as well as the ability to **parse pixel data from image files** to produce automatically generated code through the *File > Open Image File…* menu item or through drag-and-drop gestures.
44+
The application features **built-in example code** via the *Help* menu as well as the ability to **parse pixel data from image files** to produce automatically generated code through the *File > Open Image File…* menu item or through drag-and-drop gestures. Additionally, compiled Data Pixels visible in the *View Panel* can be **easily dragged, scaled and reflected** using the mouse or in-app controls to help you design the perfect images for your requirements.
4545

4646
Note: pixel color values that are automatically interpreted from image files with an embedded color space may differ slightly from the image’s intended color values.
4747

4848
![Application Screenshot](./resources/source/images/readme/ApplicationScreenshot.png)
4949

5050
## **Desktop Application Release Builds**
51-
Creating release builds for **Windows**, **Mac** and/or **Linux** is a 2-step process: code compilation, then application packaging, both of which are accomplished by running command-line NPM scripts that execute Gulp tasks.
51+
Creating release builds for **Windows**, **Mac** and/or **Linux** is a 2-step process: code compilation, then application packaging, both of which are accomplished by running command-line NPM scripts.
5252

5353
#### **Compilation**
5454

@@ -62,11 +62,7 @@ For more detailed information concerning code compilation please refer to [**Pro
6262

6363
#### **Packaging**
6464

65-
Application packaging can be executed for either all or individual deployment targets by entering one of the following CLI commands at the project **build folder** [*~/DataPixels/resources/build/* ]:
66-
67-
```
68-
npm run package
69-
```
65+
Application packaging can be executed for individual platforms by entering one of the following CLI commands at the project **build folder** [*~/DataPixels/resources/build/* ]:
7066

7167
```
7268
npm run package-linux

config/babel.config.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
module.exports = (api) => {
2+
api.cache(true);
3+
4+
return {
5+
presets: [
6+
"@babel/preset-env"
7+
]
8+
};
9+
};

config/postcss.config.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
plugins: {
3+
"postcss-preset-env": {},
4+
}
5+
};

config/webpack.config.js

+144
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
/**
2+
* Imports
3+
*
4+
*/
5+
const path = require("path");
6+
7+
/**
8+
* Constants
9+
*
10+
*/
11+
const BUILD_DIR = path.resolve(__dirname, "../resources/build/");
12+
const SOURCE_DIR = path.resolve(__dirname, "../resources/source/");
13+
14+
/**
15+
* Plugins
16+
*
17+
*/
18+
const BrowserSyncPlugin = require("browser-sync-webpack-plugin");
19+
const HTMLWebpackPlugin = require('html-webpack-plugin');
20+
const MiniCSSExtractPlugin = require("mini-css-extract-plugin");
21+
const OptimizeCSSAssetsPlugin = require("optimize-css-assets-webpack-plugin");
22+
const UglifyJsPlugin = require("uglifyjs-webpack-plugin");
23+
24+
/**
25+
* The Webpack configuration object contains the following keys:
26+
*
27+
* Entry: An object that dictates where Webpack enters the application to start building the bundles.
28+
* Module: Options that determine how the different types of modules within a project will be treated.
29+
* Optimization: Executed optimizations when in Production mode.
30+
* Output: An object that dictates where Webpack will build the bundles.
31+
* Plugins: Customization of the Webpack build process.
32+
* Stats: Options that control the displayed bundle information during the build process.
33+
*
34+
*/
35+
36+
const config = {
37+
entry: {
38+
index: [
39+
path.resolve(SOURCE_DIR, "js/index.js"),
40+
path.resolve(SOURCE_DIR, "sass/index.scss")
41+
]
42+
},
43+
module: {
44+
rules: [
45+
{
46+
test: /\.js$/,
47+
exclude: /node_modules/,
48+
use: {
49+
loader: 'babel-loader',
50+
options: {
51+
configFile: path.resolve(__dirname, "babel.config.js")
52+
}
53+
}
54+
},
55+
{
56+
test: /\.scss$/,
57+
use: [
58+
MiniCSSExtractPlugin.loader,
59+
{
60+
loader: "css-loader",
61+
options: {
62+
63+
/*
64+
* This option bypasses the management of imported fonts and image files
65+
* by disabling url() handling. Imported files must be available in their
66+
* proper locations, relative to the extracted CSS file, within the /build
67+
* folder.
68+
*/
69+
70+
url: false
71+
}
72+
},
73+
{
74+
loader: "postcss-loader",
75+
options: {
76+
config: {
77+
path: __dirname
78+
}
79+
}
80+
},
81+
"sass-loader"
82+
]
83+
}
84+
]
85+
},
86+
optimization: {
87+
minimizer: [
88+
new UglifyJsPlugin({
89+
cache: true,
90+
parallel: true
91+
}),
92+
new OptimizeCSSAssetsPlugin({})
93+
]
94+
},
95+
output: {
96+
path: BUILD_DIR,
97+
filename: "./js/renderer/[name].js"
98+
},
99+
plugins: [
100+
new MiniCSSExtractPlugin({
101+
filename: "./css/[name].css"
102+
}),
103+
new BrowserSyncPlugin({
104+
host: "localhost",
105+
port: 3000,
106+
server: {
107+
baseDir: BUILD_DIR
108+
}
109+
})
110+
],
111+
stats: {
112+
entrypoints: false,
113+
children: false
114+
}
115+
};
116+
117+
/**
118+
* Exported function module that returns the Webpack configuration object. This function is
119+
* used to alter the configuration object according to the set "development" or "production"
120+
* build mode. The following keys and plugins are modified:
121+
*
122+
* Devtool: This option controls how source maps are generated.
123+
* HTMLWebpackPlugin: Copies and/or minifies "index.html" from the /source folder to the /build folder.
124+
*
125+
*/
126+
module.exports = (env, argv) => {
127+
if (argv.mode === "development") {
128+
config.devtool = "inline-source-map";
129+
}
130+
131+
config.plugins.push(
132+
new HTMLWebpackPlugin({
133+
inject: false,
134+
minify: (argv.mode === "production") ? {
135+
collapseWhitespace: true,
136+
removeComments: true
137+
} : {},
138+
template: path.resolve(SOURCE_DIR, "index.html"),
139+
filename: "index.html"
140+
})
141+
);
142+
143+
return config;
144+
};

gulpfile.js

-131
This file was deleted.

0 commit comments

Comments
 (0)