pax_global_header00006660000000000000000000000064143647230440014521gustar00rootroot0000000000000052 comment=38d5fe477965e49eead3476b1d1a1c27aa57aca5 swup-browserslist-config-38d5fe4/000077500000000000000000000000001436472304400171465ustar00rootroot00000000000000swup-browserslist-config-38d5fe4/.github/000077500000000000000000000000001436472304400205065ustar00rootroot00000000000000swup-browserslist-config-38d5fe4/.github/workflows/000077500000000000000000000000001436472304400225435ustar00rootroot00000000000000swup-browserslist-config-38d5fe4/.github/workflows/npm-publish.yml000066400000000000000000000007031436472304400255240ustar00rootroot00000000000000# This workflow publishes a package to NPM name: Publish package on: release: types: [published] jobs: publish-npm: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: node-version: 16 registry-url: https://registry.npmjs.org - run: npm ci - run: npm publish --access public env: NODE_AUTH_TOKEN: ${{secrets.npm_token}} swup-browserslist-config-38d5fe4/.github/workflows/version-update.yml000066400000000000000000000017171436472304400262410ustar00rootroot00000000000000# This workflow bumps the package.json version and creates a PR name: Update package version on: workflow_dispatch: inputs: segment: description: 'Semver segment to update' required: true default: 'patch' type: choice options: - minor - patch jobs: update-version: name: Update package version runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: node-version: 16 - run: echo "Updating ${{ inputs.segment }} version" - name: Update version run: npm --no-git-tag-version version ${{ inputs.segment }} - uses: peter-evans/create-pull-request@v4 with: base: 'master' branch: 'version/automated' title: 'Update package version (automated)' commit-message: 'Update package version' body: 'Automated update to ${{ inputs.segment }} version' swup-browserslist-config-38d5fe4/index.js000066400000000000000000000002701436472304400206120ustar00rootroot00000000000000module.exports = { development: [ 'last 1 version', ], production: [ 'last 3 version', '>=0.5%', 'not dead', ], modern: [ 'last 2 version', '>1%', 'not dead', ] }; swup-browserslist-config-38d5fe4/package-lock.json000066400000000000000000000003551436472304400223650ustar00rootroot00000000000000{ "name": "@swup/browserslist-config", "version": "1.0.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@swup/browserslist-config", "version": "1.0.1", "license": "MIT" } } } swup-browserslist-config-38d5fe4/package.json000066400000000000000000000011161436472304400214330ustar00rootroot00000000000000{ "name": "@swup/browserslist-config", "version": "1.0.1", "description": "Shared browserslist config for swup and plugins", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "repository": { "type": "git", "url": "git+https://github.com/swup/browserslist-config.git" }, "keywords": [ "swup", "browserslist", "config" ], "author": "", "license": "MIT", "bugs": { "url": "https://github.com/swup/browserslist-config/issues" }, "homepage": "https://github.com/swup/browserslist-config#readme" }