Skip to content

Commit

Permalink
add webpack plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
ratchapol-an committed Feb 5, 2025
1 parent 76c28fb commit 87ea3e7
Show file tree
Hide file tree
Showing 20 changed files with 1,730 additions and 128 deletions.
2 changes: 1 addition & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const compat = new FlatCompat({
recommendedConfig: js.configs.recommended,
allConfig: js.configs.all,
});
const gitignorePath = path.resolve(__dirname, ".gitignore");
const gitignorePath = path.resolve(__dirname, '.gitignore');

export default [
includeIgnoreFile(gitignorePath),
Expand Down
4 changes: 2 additions & 2 deletions examples/webpack.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"Id": "webpack-build-001",
"Id": "webpack-plugin-001",
"compilationHash": "a7f8d9e0fbc1245ab67d",
"userName": "alice.smith",
"cpuCount": 8,
Expand Down Expand Up @@ -29,6 +29,6 @@
"commitSha": "b2c3d4e5f678901234567890abcdef1234567890",
"nbrOfCachedModules": 1500,
"nbrOfRebuiltModules": 350,
"customIdentifier": "webpack-build-job-98765"
"customIdentifier": "webpack-plugin-job-98765"
}

7 changes: 4 additions & 3 deletions nx.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
],
"sharedGlobals": ["{workspaceRoot}/.github/workflows/ci.yml"]
},
"nxCloudId": "67a1d42937a3c345af6d91c2",
"nxCloudId": "67a30ce4ea3bd11b2aacdd63",
"plugins": [
{
"plugin": "@nx/js/typescript",
Expand Down Expand Up @@ -56,7 +56,8 @@
},
"targetDefaults": {
"test": {
"dependsOn": ["^build", "^build", "^build"]
"dependsOn": ["^build", "^build", "^build", "^build"]
}
}
},
"defaultBase": "master"
}
Loading

0 comments on commit 87ea3e7

Please sign in to comment.