Skip to content

Commit 9d624d2

Browse files
committed
Fix things I broke when cleaning
1 parent 680e8f2 commit 9d624d2

File tree

3 files changed

+201
-43
lines changed

3 files changed

+201
-43
lines changed

BUILDING.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,5 @@
33
```
44
yarn install
55
6-
php artisan vue-i18n:generate
7-
php artisan ziggy:generate resources/assets/scripts/helpers/ziggy.js
8-
9-
npm run build
6+
yarn run build
107
```

package.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,27 @@
1414
"axios": "^0.18.0",
1515
"babel-cli": "6.18.0",
1616
"babel-loader": "^8.0.0-beta",
17+
"babel-minify": "^0.4.3",
1718
"babel-minify-webpack-plugin": "^0.3.1",
1819
"babel-plugin-transform-object-assign": "^6.22.0",
1920
"babel-plugin-transform-runtime": "^6.23.0",
2021
"babel-plugin-transform-strict-mode": "^6.18.0",
22+
"babel-preset-minify": "^0.4.3",
2123
"babel-register": "^6.26.0",
2224
"clean-webpack-plugin": "^0.1.19",
2325
"css-loader": "^0.28.11",
24-
"extract-text-webpack-plugin": "^3.0.2",
26+
"extract-text-webpack-plugin": "^4.0.0-beta.0",
27+
"glob-all": "^3.1.0",
2528
"jquery": "^3.3.1",
2629
"jwt-decode": "^2.2.0",
2730
"lodash": "^4.17.5",
2831
"luxon": "^1.2.1",
2932
"postcss": "^6.0.21",
3033
"postcss-import": "^11.1.0",
34+
"postcss-loader": "^2.1.5",
3135
"postcss-preset-env": "^3.4.0",
3236
"purgecss-webpack-plugin": "^1.1.0",
37+
"style-loader": "^0.21.0",
3338
"tailwindcss": "^0.5.1",
3439
"vue-devtools": "^3.1.9",
3540
"vue-feather-icons": "^4.7.1",
@@ -48,7 +53,7 @@
4853
"scripts": {
4954
"build:filemanager": "./node_modules/babel-cli/bin/babel.js public/themes/pterodactyl/js/frontend/files/src --source-maps --out-file public/themes/pterodactyl/js/frontend/files/filemanager.min.js",
5055
"watch": "APP_ENV=development ./node_modules/.bin/webpack --watch",
51-
"build:dev": "APP_ENV=development ./node_modules/.bin/webpack",
52-
"build:prod": "APP_ENV=production ./node_modules/.bin/webpack"
56+
"build": "APP_ENV=development ./node_modules/.bin/webpack",
57+
"build:release": "APP_ENV=production ./node_modules/.bin/webpack"
5358
}
5459
}

0 commit comments

Comments
 (0)