Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dev.biuro
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Biuro
dev.biuro
Commits
c1d04c60
Commit
c1d04c60
authored
Aug 14, 2019
by
Simonas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
live reload working version
parent
909418f9
Changes
9
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
548 additions
and
475 deletions
+548
-475
package-lock.json
package-lock.json
+522
-455
package.json
package.json
+12
-12
serve-css--core.js
tasks/serve-css--core.js
+2
-2
serve-css--main.js
tasks/serve-css--main.js
+2
-2
webpack.js
tasks/webpack.js
+4
-0
main.css
wp-content/themes/biuro/css/main.css
+1
-1
main.min.css.map
wp-content/themes/biuro/css/main.min.css.map
+1
-1
main.js
wp-content/themes/biuro/js/main.js
+2
-0
main.min.js
wp-content/themes/biuro/js/main.min.js
+2
-2
No files found.
package-lock.json
View file @
c1d04c60
This diff is collapsed.
Click to expand it.
package.json
View file @
c1d04c60
...
...
@@ -9,13 +9,13 @@
"private"
:
true
,
"author"
:
"Biuro"
,
"devDependencies"
:
{
"
@babel/core
"
:
"
^7.5.
4
"
,
"
@babel/core
"
:
"
^7.5.
5
"
,
"
@babel/plugin-syntax-dynamic-import
"
:
"
^7.0.0
"
,
"
@babel/plugin-transform-arrow-functions
"
:
"
^7.2.0
"
,
"
@babel/plugin-transform-runtime
"
:
"
^7.5.
0
"
,
"
@babel/preset-env
"
:
"
^7.5.
4
"
,
"
@babel/register
"
:
"
^7.
4.4
"
,
"
@babel/runtime
"
:
"
^7.5.
4
"
,
"
@babel/plugin-transform-runtime
"
:
"
^7.5.
5
"
,
"
@babel/preset-env
"
:
"
^7.5.
5
"
,
"
@babel/register
"
:
"
^7.
5.5
"
,
"
@babel/runtime
"
:
"
^7.5.
5
"
,
"
autoprefixer
"
:
"
^9.6.1
"
,
"
babel-loader
"
:
"
^8.0.6
"
,
"
browser-sync
"
:
"
^2.26.7
"
,
...
...
@@ -23,9 +23,9 @@
"
css-mqpacker
"
:
"
^7.0.0
"
,
"
cssnano
"
:
"
^4.1.10
"
,
"
del
"
:
"
^4.1.1
"
,
"
eslint
"
:
"
^6.
0.1
"
,
"
eslint
"
:
"
^6.
1.0
"
,
"
eslint-config-standard
"
:
"
^12.0.0
"
,
"
eslint-plugin-import
"
:
"
^2.18.
0
"
,
"
eslint-plugin-import
"
:
"
^2.18.
2
"
,
"
eslint-plugin-node
"
:
"
^9.1.0
"
,
"
eslint-plugin-promise
"
:
"
^4.2.1
"
,
"
eslint-plugin-standard
"
:
"
^4.0.0
"
,
...
...
@@ -52,14 +52,14 @@
"
precss
"
:
"
^4.0.0
"
,
"
stylelint
"
:
"
^10.1.0
"
,
"
stylelint-config-standard
"
:
"
^18.3.0
"
,
"
webpack
"
:
"
^4.3
5.0
"
,
"
webpack-bundle-analyzer
"
:
"
^3.
3.2
"
,
"
webpack
"
:
"
^4.3
9.2
"
,
"
webpack-bundle-analyzer
"
:
"
^3.
4.1
"
,
"
webpack-dev-middleware
"
:
"
^3.7.0
"
,
"
webpack-hot-middleware
"
:
"
^2.25.0
"
,
"
write-file-webpack-plugin
"
:
"
^4.
3.2
"
"
write-file-webpack-plugin
"
:
"
^4.
5.1
"
},
"dependencies"
:
{
"
core-js
"
:
"
^3.
1.4
"
,
"
npm
"
:
"
^6.10.
1
"
"
core-js
"
:
"
^3.
2.1
"
,
"
npm
"
:
"
^6.10.
3
"
}
}
tasks/serve-css--core.js
View file @
c1d04c60
...
...
@@ -51,8 +51,8 @@ export function serveCoreCSS () {
.
on
(
'error'
,
logError
);
}
else
{
stream
=
stream
.
pipe
(
cached
(
'css-core'
))
.
on
(
'error'
,
logError
)
//
.pipe(cached('css-core'))
//
.on('error', logError)
.
pipe
(
sourcemaps
.
write
())
.
on
(
'error'
,
logError
);
}
...
...
tasks/serve-css--main.js
View file @
c1d04c60
...
...
@@ -50,8 +50,8 @@ export function serveMainCSS () {
.
pipe
(
rev
());
}
else
{
stream
=
stream
.
pipe
(
cached
(
'css-main'
))
.
on
(
'error'
,
logError
)
//
.pipe(cached('css-main'))
//
.on('error', logError)
.
pipe
(
sourcemaps
.
write
(
'.'
))
.
on
(
'error'
,
logError
);
}
...
...
tasks/webpack.js
View file @
c1d04c60
...
...
@@ -41,6 +41,10 @@ let config = {
mode
:
conf
.
env
,
watchOptions
:
{
poll
:
true
},
module
:
{
rules
:
[{
test
:
/
\.
js
?
$/
,
...
...
wp-content/themes/biuro/css/main.css
View file @
c1d04c60
...
...
@@ -36,7 +36,7 @@ qa-: Signify that a QA or Test Engineering team is running an automated UI test
/* critical:start */
/* critical:end */
/** { border: 1px solid #000; }*/
/** { border: 1px solid #000; }*/
input
::-webkit-calendar-picker-indicator
{
display
:
none
;
...
...
wp-content/themes/biuro/css/main.min.css.map
View file @
c1d04c60
This source diff could not be displayed because it is too large. You can
view the blob
instead.
wp-content/themes/biuro/js/main.js
View file @
c1d04c60
...
...
@@ -59,6 +59,8 @@ const lisp = (str) => {
return
str
;
};
// console.error(46);
const
autocomplete
=
(
str
)
=>
{
const
node
=
document
.
getElementById
(
str
);
const
arrow
=
document
.
querySelector
(
'.js-toggle--'
+
str
);
...
...
wp-content/themes/biuro/js/main.min.js
View file @
c1d04c60
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment