Skip to content

Commit 5c7a716

Browse files
authored
Merge pull request #17 from blwatkins/main
Small updates
2 parents 6af8cfd + 89c636e commit 5c7a716

File tree

5 files changed

+6
-18
lines changed

5 files changed

+6
-18
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ npm run dev
6464

6565
# GitHub Workflows
6666

67-
This template contains a GitHub workflows designed to update project dependencies and scan the code for security vulnerabilities every month.
67+
This template contains GitHub workflows designed to update project dependencies and scan the code for security vulnerabilities every month.
6868

6969
To learn more about Dependabot configurations, visit the
7070
[GitHub Dependabot documentation](https://docs.github.com/en/code-security/dependabot).

eslint.config.ts.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ export default tsEslint.config(
4848
ecmaVersion: 2022,
4949
sourceType: 'module',
5050
parserOptions: {
51-
projectService: true
51+
projectService: true,
52+
tsconfigRootDir: './'
5253
}
5354
},
5455
rules: {

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "p5-typescript-template",
3-
"version": "2.1.0",
3+
"version": "2.1.1",
44
"description": "A template project for using p5.js with TypeScript and Webpack.",
55
"private": true,
66
"scripts": {

webpack.config.js

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -60,21 +60,8 @@ module.exports = {
6060
}),
6161
new MiniCssExtractPlugin()
6262
],
63-
// NOTE: optimization configuration can be added and removed as-needed
64-
// NOTE: adding optimization may increase build time
6563
optimization: {
6664
emitOnErrors: false
67-
// concatenateModules: true,
68-
// mangleExports: true,
69-
// mergeDuplicateChunks: true,
70-
// minimize: true,
71-
// providedExports: true,
72-
// removeAvailableModules: true,
73-
// removeEmptyChunks: true,
74-
// splitChunks: {
75-
// chunks: 'all'
76-
// },
77-
// usedExports: true
7865
},
7966
output: {
8067
path: path.resolve(__dirname, 'out/dist'),

0 commit comments

Comments
 (0)