Skip to content

Commit

Permalink
feat: @jawg/types v1.1.0 and update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Joxit committed Nov 27, 2024
1 parent 9667506 commit 357f4d6
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Release NPM Package

on:
push:
tags: '*'
tags: ['*']

jobs:
release:
Expand All @@ -13,7 +13,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-node@v2
with:
node-version: '12.x'
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'
scope: '@jawg'
- run: npm install
Expand Down
22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jawg/js-loader",
"version": "1.0.0",
"version": "1.1.0",
"description": "A library to load jawg js libraries",
"main": "./dist/jawg-js-loader.js",
"types": "./index.d.ts",
Expand All @@ -9,7 +9,7 @@
"build": "rollup -c",
"watch": "rollup -c -w",
"start": "ROLLUP_SERVE=true rollup -c -w",
"test": "tsc --noEmit test/*.ts"
"test": "tsc --esModuleInterop --lib es6,dom --noEmit test/*.ts"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -41,18 +41,18 @@
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.8",
"@babel/register": "^7.14.5",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^7.0.0",
"prettier": "^2.3.2",
"rollup": "^2.53.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"prettier": "^3.4.1",
"rollup": "^4.27.4",
"rollup-plugin-app-utils": "^1.0.6",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.3.5"
"typescript": "^5.7.2"
},
"dependencies": {
"@jawg/types": "^1.0.0"
"@jawg/types": "^1.1.0"
}
}
2 changes: 1 addition & 1 deletion rollup.config.js → rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import commonjs from '@rollup/plugin-commonjs';
import json from '@rollup/plugin-json';
import { emptyDirectories } from 'rollup-plugin-app-utils';
import serve from 'rollup-plugin-serve';
import { terser } from 'rollup-plugin-terser';
import terser from '@rollup/plugin-terser';
import { babel } from '@rollup/plugin-babel';
const useServe = process.env.ROLLUP_SERVE === 'true';
const port = process.env.ROLLUP_PORT || 8000;
Expand Down

0 comments on commit 357f4d6

Please sign in to comment.