Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
node_modules/
build/
npm-debug.log
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "zendesk_app_framework_sdk",
"version": "2.0.33",
"main": "dist/zaf_sdk.min.js",
"main": "build/zaf_sdk.min.js",
"description": "The Zendesk App Framework (ZAF) SDK is a JavaScript library that simplifies cross-frame communication between iframed apps and ZAF.",
"homepage": "http://developer.zendesk.com",
"bugs": "support@zendesk.com",
Expand Down Expand Up @@ -82,7 +82,7 @@
},
"standard": {
"ignore": [
"/dist/"
"/build/"
]
},
"snyk": true
Expand Down
6 changes: 3 additions & 3 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ const commonConfig = {
},
filename: '[name].js',
sourceMapFilename: '[name].js.map',
path: path.resolve(__dirname, 'dist')
path: path.resolve(__dirname, 'build')
},

// Note: devServer does not serve from dist/, but from cache. It also doesn't respect mode
// Note: devServer does not serve from build/, but from cache. It also doesn't respect mode
// so outputed files are very different from server/build/build:dev
devServer: {
contentBase: path.join(__dirname, 'dist'),
contentBase: path.join(__dirname, 'build'),
hot: false,
inline: false,
compress: true,
Expand Down