Skip to content

Commit

Permalink
👌 IMPROVE: Browsersync change open option to local
Browse files Browse the repository at this point in the history
  • Loading branch information
luangjokaj committed Dec 5, 2020
1 parent 5d451bc commit 5a268a9
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 22 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@

# Changelog

**v0.2.9-8**
- 👌 IMPROVE: Browsersync change open option to local.

**v0.2.9-7**
- 🐛 FIX: Run `stylesDev` when template files are changes. Solves Tailwind CSS purge.

Expand Down
26 changes: 9 additions & 17 deletions config/nginx/welcome.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,9 @@
(k.async = 1),
(k.src = r),
a.parentNode.insertBefore(k, a);
})(
window,
document,
"script",
"https://mc.yandex.ru/metrika/tag.js",
"ym"
);
})(window, document, 'script', 'https://mc.yandex.ru/metrika/tag.js', 'ym');

ym(70057303, "init", {
ym(70057303, 'init', {
clickmap: true,
trackLinks: true,
accurateTrackBounce: true,
Expand Down Expand Up @@ -57,7 +51,7 @@
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: "Roboto", sans-serif;
font-family: 'Roboto', sans-serif;
}

html,
Expand All @@ -75,7 +69,7 @@
background-color: #fff;
border-radius: 6px;
padding: 20px;
max-width: 420px;
max-width: 480px;
margin: 40px auto;
color: #666;
line-height: 1.4;
Expand All @@ -95,7 +89,7 @@
border-radius: 6px;
}
</style>
<meta http-equiv="Refresh" content="5; url='./'" />
<meta http-equiv="Refresh" content="10; url='./'" />
</head>
<body>
<main>
Expand All @@ -117,8 +111,8 @@
</header>
<section>
<p>
WordPressify is initializing, please wait 5 seconds and reload the
page. The server and database should be ready within a few seconds...
WordPressify is initializing, please wait a few seconds and reload the
page. The server and database is being prepared...
</p>
<div>
<svg
Expand Down Expand Up @@ -177,11 +171,9 @@
</svg>
</div>
<small>
If you are stuck here for more than a minute, try to rebuild the
If you are stuck here for more than a few minutes, try to rebuild the
environment and check out the
<a href="https://www.wordpressify.co/" target="_blank"
>documentation</a
>.
<a href="https://www.wordpressify.co/" target="_blank">documentation</a>.
</small>
</section>
</main>
Expand Down
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ function devServer(done) {
proxy: `127.0.0.1:${process.env.SERVER_PORT}`,
host: '127.0.0.1',
port: `${process.env.PROXY_PORT}`,
open: 'external',
open: 'local',
});

watch('./src/assets/css/**/*.css', stylesDev);
Expand Down
4 changes: 2 additions & 2 deletions installer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wordpressify",
"version": "0.2.9-7",
"version": "0.2.9-8",
"description": "A build system designed to automate your WordPress development workflow.",
"keywords": [
"babel",
Expand Down Expand Up @@ -60,7 +60,7 @@
"gulp-vinyl-zip": "^2.2.1",
"jquery": "^3.5.1",
"normalize.css": "^8.0.1",
"postcss": "^8.1.13",
"postcss": "^8.1.14",
"postcss-easy-import": "^3.0.0",
"postcss-mixins": "^7.0.1",
"postcss-preset-env": "^6.7.0",
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wordpressify",
"version": "0.2.9-7",
"version": "0.2.9-8",
"description": "A build system designed to automate your WordPress development workflow.",
"keywords": [
"babel",
Expand Down

0 comments on commit 5a268a9

Please sign in to comment.