Skip to content

Commit

Permalink
fix(table): improve deliverments
Browse files Browse the repository at this point in the history
  • Loading branch information
hirsch committed Aug 24, 2021
1 parent b561840 commit 6999a48
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 3 deletions.
1 change: 1 addition & 0 deletions packages/components-table/.gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/docs
/dist
/css
8 changes: 7 additions & 1 deletion packages/components-table/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,17 @@
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"types": "./dist/types/index.d.ts",
"styles": "./dist/design-system-table.css",
"styles": "./css/design-system-table.css",
"files": [
"dist/",
"css/",
"scss/"
],
"directories": {
"dist": "dist",
"css": "css",
"scss": "scss"
},
"license": "Apache-2.0",
"devDependencies": {
"@baloise/design-system-components": "^1.11.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/components-table/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default {
scss({
processor: () => postcss([autoprefixer()]),
outputStyle: 'compressed',
output: 'dist/design-system-table.css',
output: 'css/design-system-table.css',
}),
],
}
File renamed without changes.
2 changes: 1 addition & 1 deletion packages/components-table/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import '../scss/index.scss'
import '../scss/design-system-table.scss'

export * from './bal-table-button-renderer'
export * from './bal-table-tag-renderer'
Expand Down

0 comments on commit 6999a48

Please sign in to comment.