Skip to content

Commit

Permalink
chore: add some improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
pedronauck committed Apr 15, 2018
1 parent d7be8a9 commit b6e6d60
Show file tree
Hide file tree
Showing 6 changed files with 599 additions and 48 deletions.
1 change: 0 additions & 1 deletion examples/basic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
"dependencies": {
"emotion": "^9.1.1",
"playgrodd": "^0.0.1",
"playgrodd-theme-default": "^0.0.1",
"prop-types": "^15.6.1",
"react": "^16.3.1",
"react-dom": "^16.3.1",
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"bs": "lerna bootstrap"
},
"devDependencies": {
"del": "^3.0.0",
"lerna": "^2.10.1",
"libundler": "^1.5.1",
"npm-run-all": "^4.1.2",
Expand Down
6 changes: 5 additions & 1 deletion packages/load-cfg/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,18 @@
"license": "MIT",
"scripts": {
"dev": "libundler watch --ts",
"build": "libundler build --ts --compress --sourcemap"
"build": "libundler build --ts --compress --sourcemap",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.{ts,tsx}\" --write",
"fix:tslint": "tslint --fix --project ."
},
"dependencies": {
"find-up": "^2.1.0",
"deepmerge": "^2.1.0"
},
"devDependencies": {
"@types/find-up": "^2.1.1",
"@types/deepmerge": "^2.1.0",
"@types/node": "9.6.4"
}
}
5 changes: 4 additions & 1 deletion packages/playgrodd/bin/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,13 @@ yargs
type: 'number',
default: 3000,
})
yargs.positional('theme', {
type: 'string',
default: 'default',
})
yargs.positional('bundler', {
type: 'string',
default: 'webpack',
describe: 'bundler to use',
})
},
argv => new Server(argv).start()
Expand Down
6 changes: 4 additions & 2 deletions packages/playgrodd/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
},
"dependencies": {
"playgrodd-core": "^0.0.1",
"playgrodd-bundler-webpack": "^0.0.1",
"playgrodd-theme-default": "^0.0.1",
"prop-types": "^15.6.1",
"react": "^16.3.1",
"react-dom": "^16.3.1",
Expand All @@ -27,8 +29,8 @@
"yargs": "^11.0.0"
},
"peerDependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0"
"react": "^16.3.1",
"react-dom": "^16.3.1"
},
"devDependencies": {
"@types/node": "^9.6.4",
Expand Down
Loading

0 comments on commit b6e6d60

Please sign in to comment.