Skip to content

Commit

Permalink
Run prettier on the development server (#813 - part 3)
Browse files Browse the repository at this point in the history
  • Loading branch information
GarboMuffin committed Aug 22, 2023
1 parent 8983d01 commit ecc931a
Show file tree
Hide file tree
Showing 10 changed files with 279 additions and 200 deletions.
1 change: 0 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
build
development
images
licenses
website
Expand Down
8 changes: 4 additions & 4 deletions development/build-production.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
const pathUtil = require('path');
const Builder = require('./builder');
const pathUtil = require("path");
const Builder = require("./builder");

const outputDirectory = pathUtil.join(__dirname, '..', 'build');
const outputDirectory = pathUtil.join(__dirname, "..", "build");

const builder = new Builder('production');
const builder = new Builder("production");
const build = builder.build();
build.export(outputDirectory);

Expand Down
Loading

0 comments on commit ecc931a

Please sign in to comment.