Skip to content

Commit

Permalink
Merge pull request #401 from KaiVolland/geostyler-style-v7
Browse files Browse the repository at this point in the history
Updates all dependencies including geostlyer-style v7
  • Loading branch information
KaiVolland authored Nov 28, 2022
2 parents 4eec5b4 + 2d54cf4 commit 1c311d2
Show file tree
Hide file tree
Showing 8 changed files with 1,963 additions and 1,859 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/on-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/on-push-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout sources
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
Expand Down Expand Up @@ -48,4 +48,4 @@ jobs:
# coverage/lcov.info was generated in the previous npm run build step
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
github-token: ${{ secrets.GITHUB_TOKEN }}
7 changes: 6 additions & 1 deletion browser-build.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@ module.exports = {
},
resolve: {
// Add '.ts' and '.tsx' as resolvable extensions.
extensions: [".ts", ".js", ".json"]
extensions: [".ts", ".js", ".json"],
fallback: {
buffer: false,
fs: false,
path: false
}
},
optimization: {
minimizer: [
Expand Down
4 changes: 3 additions & 1 deletion data/styles/text_text_buffer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ const labelSample: Style = {
rules: [
{
name: '',
scaleDenominator: { max: 1000 },
scaleDenominator: {
max: 1000
},
symbolizers: [
{
kind: 'Text',
Expand Down
7 changes: 6 additions & 1 deletion dev-build.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@ module.exports = {
},
resolve: {
// Add '.ts' and '.tsx' as resolvable extensions.
extensions: [".ts", ".js", ".json"]
extensions: [".ts", ".js", ".json"],
fallback: {
buffer: false,
fs: false,
path: false
}
},
module: {
rules: [{
Expand Down
Loading

0 comments on commit 1c311d2

Please sign in to comment.