Skip to content

Commit

Permalink
🔧 chore(.gitignore): add 'dist/' directory to the list of ignored fil…
Browse files Browse the repository at this point in the history
…es to exclude build artifacts from version control

📦 chore(package.json): update version from 1.0.3 to 1.0.4 to reflect the latest changes

🔧 chore(webpack.environments/development.js): update output path from '../build' to '../dist' to match the new build directory

🔧 chore(webpack.environments/production.js): update output path from '../build' to '../dist' to match the new build directory
  • Loading branch information
alisaitteke committed Dec 20, 2023
1 parent 6e75b53 commit 681b27a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,5 @@ package-lock.json
*.iml
yarn.lock
actions-runner
build/*
build/*
dist/*
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@seatmap/canvas",
"version": "1.0.3",
"version": "1.0.4",
"tags": "seating, seat, seatmap, seat-selection, seat-booking, booking, ticket, reservation",
"author": "Ali Sait TEKE <[email protected]>",
"homepage": "https://github.com/alisaitteke/seatmap-canvas",
Expand All @@ -25,7 +25,7 @@
"node": ">=4.0.0"
},
"license": "MIT",
"main": "build/seatmap.canvas.1.0.1.js",
"main": "dist/seatmap.canvas.1.0.1.js",
"devDependencies": {
"@types/d3": "^5.0.0",
"@types/node": "^18.6.3",
Expand Down
2 changes: 1 addition & 1 deletion webpack.environments/development.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module.exports = {
extensions: [".ts", ".tsx", ".js"]
},
output: {
path: path.resolve(__dirname, '../build'),
path: path.resolve(__dirname, '../dist'),
filename: 'seatmap.canvas.js',
},
module: {
Expand Down
2 changes: 1 addition & 1 deletion webpack.environments/production.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module.exports = {
extensions: [".ts", ".tsx", ".js"]
},
output: {
path: path.resolve(__dirname, '../build'),
path: path.resolve(__dirname, '../dist'),
filename: `[name].${version}.js`,
clean: true
},
Expand Down

0 comments on commit 681b27a

Please sign in to comment.