Skip to content

Commit

Permalink
deps: update rollup
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Kotzbauer <[email protected]>
  • Loading branch information
ckotzbauer committed Oct 15, 2022
1 parent 54d3d95 commit b3efacf
Show file tree
Hide file tree
Showing 5 changed files with 86 additions and 92 deletions.
14 changes: 0 additions & 14 deletions config/rollup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,6 @@ export const getConfig = (opts?: { dev: boolean }): RollupOptions => ({
banner: `/* simple-tree-component v${pkg.version}, @license MIT */`,
...(opts && opts.dev ? { sourcemap: true } : {}),
},
/*onwarn(warning) {
const ignoredCircular = ["src/types/options.ts", "src/utils/dates.ts"];
if (typeof warning === "string") throw Error(warning);
else if (
warning.code !== "CIRCULAR_DEPENDENCY" ||
!warning.importer ||
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
!ignoredCircular.includes(warning.importer!)
) {
throw Error(warning.message);
}
},*/

plugins: [typescript({ tsconfig: resolve("./src/tsconfig.json") })],
watch: {},
});
Expand Down
2 changes: 0 additions & 2 deletions dist/simple-tree-component.css
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
overflow: hidden;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
max-width: 100%;
display: inline-block;
Expand Down Expand Up @@ -248,7 +247,6 @@
margin-right: 0.375rem;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.simple-tree-node-container .simple-tree-node-wrapper .simple-tree-node-chevron-container.simple-tree-node-chevron-clickable {
Expand Down
2 changes: 1 addition & 1 deletion dist/simple-tree-component.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b3efacf

Please sign in to comment.