Skip to content

Commit

Permalink
🎨 Moves new block to match other core
Browse files Browse the repository at this point in the history
  • Loading branch information
peterramsing committed Feb 9, 2019
1 parent 496e61d commit e432e9c
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 7 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion lib/lost-align.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var newBlock = require('./new-block.js');
var newBlock = require('./core/lg-new-block.js');

module.exports = function lostAlign(css, settings) {
css.walkDecls('lost-align', function alignDirectionFunction(decl) {
Expand Down
2 changes: 1 addition & 1 deletion lib/lost-center.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var newBlock = require('./new-block.js');
var newBlock = require('./core/lg-new-block.js');

var lgLogic = require('./core/lg-logic');
var lgUtils = require('./core/lg-utilities');
Expand Down
2 changes: 1 addition & 1 deletion lib/lost-column.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var newBlock = require('./new-block.js');
var newBlock = require('./core/lg-new-block.js');

var lgLogic = require('./core/lg-logic');
var lgUtils = require('./core/lg-utilities');
Expand Down
2 changes: 1 addition & 1 deletion lib/lost-masonry-wrap.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var newBlock = require('./new-block.js');
var newBlock = require('./core/lg-new-block.js');

module.exports = function lostMasonryWrapDecl(css, settings) {
css.walkDecls('lost-masonry-wrap', function lostMasonryWrapDeclFunction(
Expand Down
2 changes: 1 addition & 1 deletion lib/lost-row.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var newBlock = require('./new-block.js');
var newBlock = require('./core/lg-new-block.js');

var lgLogic = require('./core/lg-logic');
var lgUtils = require('./core/lg-utilities');
Expand Down
2 changes: 1 addition & 1 deletion lib/lost-utility.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var newBlock = require('./new-block.js');
var newBlock = require('./core/lg-new-block.js');
var getColorValue = require('./core/lg-utilities').getColorValue;

function unitsMatch() {
Expand Down
2 changes: 1 addition & 1 deletion lib/lost-waffle.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
var newBlock = require('./new-block.js');
var newBlock = require('./core/lg-new-block.js');

var lgLogic = require('./core/lg-logic');
var lgUtils = require('./core/lg-utilities');
Expand Down

0 comments on commit e432e9c

Please sign in to comment.