Skip to content

Commit 41d9566

Browse files
author
Jamie Curnow
committed
Revert some breaking packages
1 parent d4cccfa commit 41d9566

File tree

6 files changed

+9
-7
lines changed

6 files changed

+9
-7
lines changed

bin/build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/bash
22

3-
sudo /usr/local/bin/docker-compose run --no-deps --rm app npm run-script build
3+
docker-compose run --no-deps --rm app npm run-script build
44
exit $?

bin/build-dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/bash
22

3-
sudo /usr/local/bin/docker-compose run --no-deps --rm app npm run-script dev
3+
docker-compose run --no-deps --rm app npm run-script dev
44
exit $?

bin/migrate_create

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ else
2121

2222
cd "$CODEBASE"
2323

24-
sudo /usr/local/bin/docker-compose run --rm --no-deps app node node_modules/knex/bin/cli.js migrate:make "$1"
24+
docker-compose run --rm --no-deps app node node_modules/knex/bin/cli.js migrate:make "$1"
2525
exit $?
2626
fi

bin/npm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/bash
22

3-
sudo /usr/local/bin/docker-compose run --no-deps --rm app npm $@
3+
docker-compose run --no-deps --rm app npm $@
44
exit $?

bin/yarn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/bash
22

3-
sudo /usr/local/bin/docker-compose run --no-deps --rm app yarn $@
3+
docker-compose run --no-deps --rm app yarn $@
44
exit $?

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"description": "A beautiful interface for creating Nginx endpoints",
55
"main": "src/backend/index.js",
66
"devDependencies": {
7+
"@babel/core": "^7.7.4",
78
"babel-core": "^6.26.3",
89
"babel-loader": "^8.0.6",
910
"babel-minify-webpack-plugin": "^0.3.1",
@@ -12,6 +13,7 @@
1213
"backbone.marionette": "^4.1.2",
1314
"copy-webpack-plugin": "^5.0.5",
1415
"css-loader": "^3.2.0",
16+
"ejs-lint": "^0.3.0",
1517
"ejs-loader": "^0.3.5",
1618
"file-loader": "^5.0.2",
1719
"imports-loader": "^0.8.0",
@@ -42,15 +44,15 @@
4244
"compression": "^1.7.4",
4345
"config": "^3.2.4",
4446
"diskdb": "^0.1.17",
45-
"ejs": "^3.0.1",
47+
"ejs": "^2.6.1",
4648
"express": "^4.17.1",
4749
"express-fileupload": "^1.1.6",
4850
"gravatar": "^1.8.0",
4951
"html-entities": "^1.2.1",
5052
"json-schema-ref-parser": "^7.1.2",
5153
"jsonwebtoken": "^8.5.1",
5254
"knex": "^0.20.3",
53-
"liquidjs": "^9.4.2",
55+
"liquidjs": "^5.1.1",
5456
"lodash": "^4.17.15",
5557
"moment": "^2.24.0",
5658
"mysql": "^2.17.1",

0 commit comments

Comments
 (0)