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
2 changes: 1 addition & 1 deletion docs/build.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Building the website **requires** the following prerequisites:
To install dependencies,

```bash
$ make install
$ npm install
```

* * *
Expand Down
2 changes: 1 addition & 1 deletion etc/docker/api_docs_server.conf
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ WORKDIR /srv/www/stdlib.io
COPY package*.json ./

# Install application dependencies:
RUN npm run install:production
RUN npm install

# Copy over the application source:
COPY . .
Expand Down
2 changes: 1 addition & 1 deletion etc/webpack/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ module.exports = function(webpackEnv) {
// We include the app code last so that if there is a runtime error during
// initialization, it doesn't blow up the WebpackDevServer client, and
// changing JS code would still trigger a refresh.
],
].filter(Boolean),
output: {
// The build folder.
path: paths.appBuild,
Expand Down
Loading