Skip to content

Commit

Permalink
fix: publish flow
Browse files Browse the repository at this point in the history
  • Loading branch information
jigsawye committed Oct 12, 2020
1 parent aa5144b commit 2c15827
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/changelog",
{
"changelogFile": "./CHANGELOG.md"
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
}
5 changes: 1 addition & 4 deletions formik/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,5 @@
"private": true,
"name": "tailor-ui/formik",
"main": "../lib/formik/index.cjs.js",
"module": "../lib/formik/index.js",
"files": [
"../lib/formik"
]
"module": "../lib/formik/index.js"
}
5 changes: 1 addition & 4 deletions lab/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,5 @@
"private": true,
"name": "tailor-ui/lab",
"main": "../lib/lab/index.cjs.js",
"module": "../lib/lab/index.js",
"files": [
"../lib/lab"
]
"module": "../lib/lab/index.js"
}
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@
"main": "lib/index.cjs.js",
"module": "lib/index.js",
"files": [
"lib"
"formik",
"lab",
"lib",
"theme",
"utils"
],
"scripts": {
"build": "yarn clean && yarn build:type && yarn build:esm && yarn build:cjs",
Expand All @@ -24,7 +28,6 @@
"build:esm": "cross-env NODE_ENV=production babel --config-file ./babel.config.js ./src --out-dir ./lib --extensions '.ts,.tsx'",
"build:type": "tsc --emitDeclarationOnly",
"clean": "rimraf ./lib tsconfig.tsbuildinfo",
"postinstall": "cd website && yarn",
"lint": "yarn lint:ts && yarn lint:css",
"lint:css": "stylelint './src'",
"lint:fix": "yarn lint:ts --fix && yarn lint:css",
Expand Down
5 changes: 1 addition & 4 deletions theme/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,5 @@
"private": true,
"name": "tailor-ui/theme",
"main": "../lib/theme/index.cjs.js",
"module": "../lib/theme/index.js",
"files": [
"../lib/theme"
]
"module": "../lib/theme/index.js"
}
5 changes: 1 addition & 4 deletions utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,5 @@
"private": true,
"name": "tailor-ui/utils",
"main": "../lib/utils/index.cjs.js",
"module": "../lib/utils/index.js",
"files": [
"../lib/utils"
]
"module": "../lib/utils/index.js"
}

0 comments on commit 2c15827

Please sign in to comment.