summaryrefslogtreecommitdiff
path: root/web/source/index.js
diff options
context:
space:
mode:
authorLibravatar f0x52 <f0x@cthu.lu>2022-08-07 22:31:42 +0200
committerLibravatar GitHub <noreply@github.com>2022-08-07 22:31:42 +0200
commit4722970a5be599d3fdcf6b172bd5f0d3e81ab95d (patch)
tree8d03d87e7783d551561c432d3674dfc0fdf96a3b /web/source/index.js
parent[bugfix] Markdown formatting updates (#743) (diff)
downloadgotosocial-4722970a5be599d3fdcf6b172bd5f0d3e81ab95d.tar.xz
[chore] Update js deps (#744)
* dependency wrangling * update postcss-custom-prop-vars to 0.0.5 (postcss 8)
Diffstat (limited to 'web/source/index.js')
-rw-r--r--web/source/index.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/web/source/index.js b/web/source/index.js
index 17e4435c4..20e8ee623 100644
--- a/web/source/index.js
+++ b/web/source/index.js
@@ -23,7 +23,7 @@
*/
const path = require('path');
-const budoExpress = require('@f0x52/budo-express');
+const budoExpress = require('budo-express');
const babelify = require('babelify');
const fs = require("fs");
const EventEmitter = require('events');
@@ -44,7 +44,6 @@ const bundles = {
const postcssPlugins = [
"postcss-import",
- "postcss-strip-inline-comments",
"postcss-nested",
"autoprefixer",
"postcss-custom-prop-vars",
@@ -77,7 +76,7 @@ const browserifyConfig = {
],
plugin: [
[require("icssify"), {
- parser: require('postcss-scss'),
+ parser: require("postcss-scss"),
before: postcssPlugins,
mode: 'global'
}],