Skip to content

Commit

Permalink
Merge pull request #7 from deriv-com/beta
Browse files Browse the repository at this point in the history
  • Loading branch information
mohsen-deriv authored Nov 10, 2023
2 parents c78b1b1 + cc27d44 commit 56bab5e
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 17 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.0.9-beta.1](https://github.com/deriv-com/quill-icons/compare/v1.0.8...v1.0.9-beta.1) (2023-11-10)


### ♻️ Chores

* added . export path for package.json ([606a5f7](https://github.com/deriv-com/quill-icons/commit/606a5f71db0e29d7e77a95f182a4dc06f1a33ea9))

## [1.0.8](https://github.com/deriv-com/quill-icons/compare/v1.0.7...v1.0.8) (2023-11-09)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

10 changes: 6 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
{
"name": "@deriv/quill-icons",
"version": "1.0.8",
"version": "1.0.9-beta.1",
"description": "This is the central repository for quill icons, exported from figma design file",
"files": [
"dist"
],
"exports": {
"./QuillTypes": {
"types": "./dist/quill-types.d.ts"
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./Currencies": {
"import": "./dist/Currencies/index.js",
Expand Down Expand Up @@ -59,7 +61,7 @@
"export:barrels": "barrelsby -c barrelsby.config.json",
"export": "npm-run-all clean export:figma export:barrels format",
"clean:postBuild": "rimraf dist/types dist/index.d.ts dist/index.js",
"build": "rimraf dist && rollup -c && npm run clean:postBuild",
"build": "rimraf dist && rollup -c",
"rebuild": "npm-run-all clean export build",
"storybook": "storybook dev -p 6006",
"start": "storybook dev -p 6006",
Expand Down
11 changes: 0 additions & 11 deletions rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -89,17 +89,6 @@ export default [
}),
],
},
{
input: 'src/types/index.ts',
output: [{ file: 'dist/quill-types.d.ts', format: 'esm' }],
plugins: [
dts({
compilerOptions: {
baseUrl: './src',
},
}),
],
},
...componentsFolders.map((folder) => component(commonPlugins, folder)),
...componentsFolders.map((folder) => componentDts(folder)),
];

0 comments on commit 56bab5e

Please sign in to comment.