Skip to content

Commit

Permalink
Add np
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanoverna committed Jul 25, 2018
1 parent d7da1cc commit b64e149
Show file tree
Hide file tree
Showing 3 changed files with 990 additions and 25 deletions.
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@
"scripts": {
"build": "babel src --out-dir . --ignore __tests__",
"watch": "babel -w src --out-dir . --ignore __tests__",
"prepublish": "cross-env NODE_ENV=production npm run build"
"prepublish": "cross-env NODE_ENV=production npm run build",
"test": "echo 1"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.6.1",
"cross-env": "^5.0.5"
"cross-env": "^5.0.5",
"np": "^3.0.4"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
Expand Down
2 changes: 1 addition & 1 deletion src/createSiteNode.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const initNodeFromEntity = require('./initNodeFromEntity');
const addDigestToNode = require('./addDigestToNode');
const addEntityAttributes = require('./addEntityAttributes');
const createFaviconMetaTagsNode = require('./createFaviconMetaTagsNode');
const objectAssign =require('object-assign');
const objectAssign = require('object-assign');

module.exports = function(repo, itemsRepo, createNode) {
const siteEntity = repo.findEntitiesOfType('site')[0];
Expand Down
Loading

0 comments on commit b64e149

Please sign in to comment.