Skip to content

Commit

Permalink
Fix deps.
Browse files Browse the repository at this point in the history
  • Loading branch information
treshugart committed Dec 6, 2017
1 parent ae72af9 commit 3b24192
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion packages/sk-marked/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"description": "A web component for rendering Markdown using Marked.",
"devDependencies": {
"@skatejs/bore": "^4.0.0",
"@skatejs/ssr": "^0.16.0",
"@skatejs/ssr": "^0.17.0",
"jest-in-case": "^1.0.2"
},
"esnext": "dist/esnext/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/sk-router/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"description": "A web component router that's compatible with code-splitting out of the box.",
"devDependencies": {
"@skatejs/bore": "^4.0.0",
"@skatejs/ssr": "^0.16.0",
"@skatejs/ssr": "^0.17.0",
"jest-in-case": "^1.0.2"
},
"esnext": "dist/esnext/index.js",
Expand Down
2 changes: 1 addition & 1 deletion projector.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function exec(...args) {
async function babel({ envs }) {
for (const w of await getWorkspaces()) {
for (const env of envs.split(',')) {
if ((w.config.files || []).indexOf(env) === -1) continue;
if ((w.config.files || []).indexOf(`dist/${env}`) === -1) continue;
const src = path.join(w.dir, 'src');
const dst = path.join(w.dir, 'dist', env);
exec('babel', [src, '--out-dir', dst], {
Expand Down
10 changes: 5 additions & 5 deletions site/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
"name": "@skatejs/site",
"private": true,
"dependencies": {
"@skatejs/renderer-lit-html": "^0.0.0",
"@skatejs/renderer-preact": "^0.1.0",
"@skatejs/renderer-react": "^0.0.0",
"@skatejs/renderer-lit-html": "^0.1.1",
"@skatejs/renderer-preact": "^0.2.0",
"@skatejs/renderer-react": "^0.1.0",
"@skatejs/sk-marked": "^0.0.0",
"@skatejs/sk-router": "^0.1.0",
"@skatejs/sk-router": "^0.2.0",
"highlight.js": "^9.12.0",
"lit-html": "^0.7.1",
"preact": "^8.2.5",
Expand All @@ -24,4 +24,4 @@
"webpack-dev-server": "^2.9.3",
"worker-loader": "^1.1.0"
}
}
}

0 comments on commit 3b24192

Please sign in to comment.