diff --git a/CHANGELOG.md b/CHANGELOG.md index ef60a8e..8085ad4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [1.1.16](https://github.com/DaVikingCode/react-openlayers/compare/v1.1.15...v1.1.16) (2023-03-17) + + +### Bug Fixes + +* rollup config : copy css file ([e3dc576](https://github.com/DaVikingCode/react-openlayers/commit/e3dc576cadc089a88ecee7ae288897fea4137e4d)) + ## [1.1.15](https://github.com/DaVikingCode/react-openlayers/compare/v1.1.14...v1.1.15) (2023-03-17) diff --git a/package-lock.json b/package-lock.json index 4d639d4..16bc15b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@daviking/openlayers", - "version": "1.1.15", + "version": "1.1.16", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@daviking/openlayers", - "version": "1.1.15", + "version": "1.1.16", "license": "MIT", "dependencies": { "ol": ">=6.5.0", diff --git a/package.json b/package.json index b1449e8..573e1d1 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@daviking/openlayers", "description": "Library wrapping open layers with react. ", - "version": "1.1.15", + "version": "1.1.16", "license": "MIT", "main": "./lib/cjs/index.js", "module": "./lib/esm/index.js", @@ -31,9 +31,10 @@ }, "scripts": { "start": "npm run storybook --openssl-legacy-provider", - "build": "npm run build:cjs && npm run build:esm", + "build": "npm run build:cjs && npm run build:esm && npm run copy-files", "build:cjs": "rollup -c", "build:esm": "tsc --p tsconfig.lib.json", + "copy-files": "cp -r ./src/styles/ ./lib/esm/", "test": "react-scripts test", "eject": "react-scripts eject", "lint": "eslint \"{src,test,stories}/**/*.{js,ts,tsx}\"",