Compare commits

...

6 Commits

Author SHA1 Message Date
Faisal Salman
90017c98d3 Bump version 1.0.41 (mirror of 0.7.41) 2025-08-19 19:09:54 +07:00
Faisal Salman
f5a421cfa5 Bump v1.0.40 (mirror of v0.7.40) 2024-12-21 14:22:22 +07:00
Faisal Salman
8b1db6bcfd Add GitHub Actions: auto publish to npm 2024-09-11 20:48:46 +07:00
Faisal Salman
ab77baf6de Bump version 1.0.39 (mirror of 0.7.39) 2024-09-11 20:29:17 +07:00
Faisal Salman
693a83de2e Bump version 1.0.38 (mirror of 0.7.38) 2024-05-28 21:11:21 +07:00
Faisal Salman
8087a1b4f0 Bump version 1.0.37 (mirror of 0.7.37) 2023-10-27 19:49:46 +07:00
7 changed files with 32 additions and 9 deletions

View File

@@ -0,0 +1,23 @@
name: Publish to NPM
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
- run: npm install -g npm
- run: npm ci
- run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

View File

@@ -1,6 +1,6 @@
{
"name": "ua-parser-js",
"version": "0.7.41",
"version": "1.0.41",
"authors": [
"Faisal Salman <f@faisalman.com>"
],

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1,6 +1,6 @@
Package.describe({
name: 'faisalman:ua-parser-js',
version: '0.7.41',
version: '1.0.41',
summary: 'Lightweight JavaScript-based user-agent string parser',
git: 'https://github.com/faisalman/ua-parser-js.git',
documentation: 'readme.md'

View File

@@ -1,7 +1,7 @@
{
"title": "UAParser.js",
"name": "ua-parser-js",
"version": "0.7.41",
"version": "1.0.41",
"author": "Faisal Salman <f@faisalman.com> (http://faisalman.com)",
"description": "Detect Browser, Engine, OS, CPU, and Device type/model from User-Agent data. Supports browser & node.js environment",
"keywords": [

View File

@@ -1,5 +1,5 @@
/////////////////////////////////////////////////////////////////////////////////
/* UAParser.js v0.7.41
/* UAParser.js v1.0.41
Copyright © 2012-2025 Faisal Salman <f@faisalman.com>
MIT License *//*
Detect Browser, Engine, OS, CPU, and Device type/model from User-Agent data.
@@ -17,7 +17,7 @@
/////////////
var LIBVERSION = '0.7.41',
var LIBVERSION = '1.0.41',
EMPTY = '',
UNKNOWN = '?',
FUNC_TYPE = 'function',