Skip to content

Commit

Permalink
chore: Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
finom committed Jan 18, 2020
1 parent 04d46aa commit 50313ff
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/seemple/tools/generate-package.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ for (const key of [
'bugs',
'homepage',
'description',
'dependencies'
'dependencies',
'main'
]) {
const value = sourcePackage[key];
if (!value) {
Expand Down
6 changes: 5 additions & 1 deletion test/post-publish/post-publish.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
const { execSync } = require('child_process');

execSync('npm i', { cwd: __dirname });
execSync('npm i --no-package-lock', { cwd: __dirname });

const Seemple = require('seemple');
const parseForm = require('seemple-parse-form');
const router = require('seemple-router');

0 comments on commit 50313ff

Please sign in to comment.