Skip to content

Commit

Permalink
fix: deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergio committed Oct 19, 2019
1 parent 05eb857 commit 2624e62
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 50 deletions.
37 changes: 7 additions & 30 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,38 +1,19 @@
{
"name": "themeprovider-storybook",
"version": "1.2.0",
"version": "1.2.1",
"description": "Use your styled-components themes on your favourite storybook",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist/**/*"],
"scripts": {
"lint": "eslint 'src/**/*.ts' 'src/**/*.tsx'",
"watch:storybook": "start-storybook -p 6006 -c example/.storybook",
"watch:tsc": "tsc -w",
"dev": "concurrently --kill-others \"npm run watch:tsc\" \"npm run watch:storybook\"",
"build": "rimraf pkg && pack build",
"test": "rimraf pkg && jest",
"unpack": "./scripts/unpack.sh",
"build": "rimraf dist && tsc",
"test": "rimraf dist && jest",
"release": "semantic-release"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg",
{
"exclude": [
"__tests__/**/*"
]
}
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-build-web"
],
[
"@pika/plugin-build-types"
]
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
Expand All @@ -50,12 +31,8 @@
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@pika/pack": "0.4.0",
"@pika/plugin-build-node": "^0.6.1",
"@pika/plugin-build-types": "^0.6.1",
"@pika/plugin-build-web": "^0.6.1",
"@pika/plugin-standard-pkg": "^0.6.1",
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/git": "^7.0.16",
"@storybook/addons": "^5.0.3",
"@storybook/react": "^5.0.3",
"@types/jest": "^24.0.19",
Expand Down
8 changes: 4 additions & 4 deletions release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ module.exports = {
"@semantic-release/npm",
{
npmPublish: true,
pkgRoot: "package",
pkgRoot: "dist",
},
],
{
assets: ["package.json", "CHANGELOG.md"],
message:
"chore(release): ${nextRelease.version} [skip ci]nn${nextRelease.notes}",
path: "@semantic-release/github",
message: "chore(release): ${nextRelease.version} [skip ci]nn${nextRelease.notes}",
path: "@semantic-release/git",
},
"@semantic-release/github"
],
};
16 changes: 0 additions & 16 deletions scripts/unpack.sh

This file was deleted.

0 comments on commit 2624e62

Please sign in to comment.