Skip to content

Commit

Permalink
fix: standardize 'files' field format in package.json across packages
Browse files Browse the repository at this point in the history
  • Loading branch information
cstrnt committed Feb 18, 2025
1 parent a0d3cd8 commit 1a4318e
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 27 deletions.
4 changes: 1 addition & 3 deletions packages/angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@
"@tryabby/core": "workspace:*",
"tslib": "^2.3.0"
},
"files": [
"dist"
],
"files": ["dist"],
"main": "./dist/esm2020/tryabby-angular.mjs",
"module": "./dist/esm2020/tryabby-angular.mjs",
"types": "./dist/index.d.ts",
Expand Down
4 changes: 1 addition & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@
"bin": {
"abby": "./dist/index.js"
},
"files": [
"dist"
],
"files": ["dist"],
"scripts": {
"dev": "pnpm run build --watch",
"start": "pnpm run build && ./dist/index.js",
Expand Down
4 changes: 1 addition & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
"version": "7.0.1",
"description": "",
"main": "dist/index.js",
"files": [
"dist"
],
"files": ["dist"],
"exports": {
".": {
"require": "./dist/index.js",
Expand Down
4 changes: 1 addition & 3 deletions packages/devtools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@
"name": "@tryabby/devtools",
"version": "8.0.1",
"type": "module",
"files": [
"dist"
],
"files": ["dist"],
"main": "dist/index.umd.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
4 changes: 1 addition & 3 deletions packages/next/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
"version": "7.0.1",
"description": "",
"main": "dist/index.js",
"files": [
"dist"
],
"files": ["dist"],
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
".": {
Expand Down
4 changes: 1 addition & 3 deletions packages/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
"version": "7.0.1",
"description": "",
"main": "dist/index.js",
"files": [
"dist"
],
"files": ["dist"],
"exports": {
".": {
"require": "./dist/index.js",
Expand Down
4 changes: 1 addition & 3 deletions packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
"version": "7.0.1",
"description": "",
"main": "dist/index.js",
"files": [
"dist"
],
"files": ["dist"],
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
".": {
Expand Down
4 changes: 1 addition & 3 deletions packages/remix/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
"version": "3.0.1",
"description": "",
"main": "dist/index.js",
"files": [
"dist"
],
"files": ["dist"],
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
".": {
Expand Down
4 changes: 1 addition & 3 deletions packages/svelte/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@
"main": "dist/index.umd.cjs",
"homepage": "https://docs.tryabby.dev",
"type": "module",
"files": [
"dist"
],
"files": ["dist"],
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
Expand Down

0 comments on commit 1a4318e

Please sign in to comment.