Skip to content

Commit

Permalink
refactor: renaming the .tooling/ dist to dist/ (#436)
Browse files Browse the repository at this point in the history
  • Loading branch information
erunion authored May 11, 2021
1 parent fe36a4d commit 0e644a5
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
.tooling/
coverage/
dist/
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
.tooling/
coverage/
dist/
node_modules/
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
__tests__/
.github/
coverage/
.eslint*
.prettier*
2 changes: 1 addition & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
.tooling/
coverage/
dist/
packages/
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
"bundlewatch": {
"files": [
{
"path": ".tooling/index.js",
"path": "dist/index.js",
"maxSize": "120kb"
}
]
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module.exports = {
minimizer: [new TerserPlugin()],
},
output: {
path: path.resolve(__dirname, '.tooling'),
path: path.resolve(__dirname, 'dist'),
filename: 'index.js',
libraryTarget: 'commonjs2',
},
Expand Down

0 comments on commit 0e644a5

Please sign in to comment.