Skip to content

Commit

Permalink
save
Browse files Browse the repository at this point in the history
  • Loading branch information
jcbhmr authored Dec 28, 2024
1 parent 3dd1cd3 commit f249192
Show file tree
Hide file tree
Showing 17 changed files with 1,428 additions and 1,630 deletions.
24 changes: 13 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "platformdirs",
"version": "4.3.8-rc1",
"version": "4.3.8-rc2",
"description": "📂 Unified interface to get platform-specific directories",
"keywords": [
"nodejs",
Expand All @@ -22,22 +22,24 @@
"author": "Jacob Hummer <jcbhmr@outlook.com> (https://jcbhmr.me)",
"type": "module",
"exports": {
".": "./src/index.js",
"./android": "./src/android.js",
"./api": "./src/api.js",
"./macos": "./src/macos.js",
"./unix": "./src/unix.js",
"./version": "./src/version.js"
".": "./dist/index.js",
"./android": "./dist/android.js",
"./api": "./dist/api.js",
"./macos": "./dist/macos.js",
"./unix": "./dist/unix.js",
"./version": "./dist/version.js"
},
"bin": {
"platformdirs": "src/main.js"
"platformdirs": "dist/main.js"
},
"files": ["src"],
"files": ["dist"],
"scripts": {
"format": "biome format --write .",
"lint": "biome check --write . && tsc --noEmit",
"run": "node src/main.js",
"test": "node --test"
"run": "node --experimental-transform-types src/main.ts",
"test": "node --experimental-transform-types --test",
"build": "tsc --noCheck",
"prepack": "npm run build"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
Expand Down
203 changes: 0 additions & 203 deletions src/android.js

This file was deleted.

Loading

0 comments on commit f249192

Please sign in to comment.