-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
135 additions
and
135 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: npm | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
time: "10:00" | ||
open-pull-requests-limit: 10 | ||
assignees: | ||
- sergiodxa | ||
- package-ecosystem: npm | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
time: "10:00" | ||
open-pull-requests-limit: 10 | ||
assignees: | ||
- sergiodxa |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
changelog: | ||
categories: | ||
- title: New Features | ||
labels: | ||
- enhancement | ||
- title: Documentation Changes | ||
labels: | ||
- documentation | ||
- title: Example | ||
labels: | ||
- example | ||
- title: Bug Fixes | ||
labels: | ||
- bug | ||
- title: Deprecations | ||
labels: | ||
- deprecated | ||
- title: Dependency Upgrades | ||
labels: | ||
- dependencies | ||
- title: Other Changes | ||
labels: | ||
- "*" | ||
- title: New Features | ||
labels: | ||
- enhancement | ||
- title: Documentation Changes | ||
labels: | ||
- documentation | ||
- title: Example | ||
labels: | ||
- example | ||
- title: Bug Fixes | ||
labels: | ||
- bug | ||
- title: Deprecations | ||
labels: | ||
- deprecated | ||
- title: Dependency Upgrades | ||
labels: | ||
- dependencies | ||
- title: Other Changes | ||
labels: | ||
- "*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,91 +1,91 @@ | ||
{ | ||
"name": "flagged", | ||
"description": "Feature flags for React made easy with hooks, HOC and Render Props", | ||
"version": "2.0.10", | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">=18.0.0" | ||
}, | ||
"type": "module", | ||
"sideEffects": false, | ||
"exports": { | ||
"./package.json": "./package.json", | ||
".": "./build/index.js" | ||
}, | ||
"scripts": { | ||
"prepare": "npm run build", | ||
"build": "tsc --project tsconfig.json --outDir ./build", | ||
"postbuild": "prettier --write \"build/**/*.js\" \"build/**/*.d.ts\"", | ||
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.tsx\" \"test/**/*.ts\" \"test/**/*.tsx\" \"*.md\" \"package.json\"", | ||
"typecheck": "tsc --project tsconfig.json --noEmit", | ||
"lint": "eslint --ext .ts,.tsx src/", | ||
"test": "vitest --run", | ||
"test:watch": "vitest", | ||
"test:coverage": "vitest --coverage", | ||
"test:exports": "bun scripts/check-pkg-exports.ts" | ||
}, | ||
"homepage": "https://github.com/sergiodxa/flagged", | ||
"author": { | ||
"name": "Sergio Xalambrí", | ||
"url": "https://sergiodxa.com", | ||
"email": "[email protected]" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/sergiodxa/flagged.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/sergiodxa/flagged/issues" | ||
}, | ||
"main": "dist/index.js", | ||
"module": "dist/flagged.esm.js", | ||
"typings": "dist/index.d.ts", | ||
"files": [ | ||
"dist" | ||
], | ||
"keywords": [ | ||
"react", | ||
"feature flags", | ||
"flags", | ||
"features", | ||
"hooks", | ||
"hoc", | ||
"high order component", | ||
"render props", | ||
"typescript", | ||
"types" | ||
], | ||
"peerDependencies": { | ||
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" | ||
}, | ||
"devDependencies": { | ||
"@arethetypeswrong/cli": "^0.13.1", | ||
"@testing-library/jest-dom": "^6.4.2", | ||
"@testing-library/react": "^14.0.0", | ||
"@types/bun": "^1.0.10", | ||
"@types/react": "^18.2.25", | ||
"@typescript-eslint/eslint-plugin": "^6.7.4", | ||
"@typescript-eslint/parser": "^6.7.4", | ||
"@vitejs/plugin-react": "^4.1.0", | ||
"@vitest/coverage-v8": "^0.34.6", | ||
"eslint": "^8.12.0", | ||
"eslint-config-prettier": "^9.0.0", | ||
"eslint-import-resolver-typescript": "^3.6.1", | ||
"eslint-plugin-cypress": "^2.15.1", | ||
"eslint-plugin-import": "^2.28.1", | ||
"eslint-plugin-jest-dom": "^5.1.0", | ||
"eslint-plugin-jsx-a11y": "^6.7.1", | ||
"eslint-plugin-prettier": "^5.0.0", | ||
"eslint-plugin-promise": "^6.1.1", | ||
"eslint-plugin-react": "^7.33.2", | ||
"eslint-plugin-react-hooks": "^4.6.0", | ||
"eslint-plugin-testing-library": "^6.0.2", | ||
"eslint-plugin-unicorn": "^49.0.0", | ||
"happy-dom": "^12.9.0", | ||
"prettier": "^3.2.5", | ||
"react": "^18.0.0", | ||
"typescript": "^5.2.2", | ||
"vite": "^5.0.0", | ||
"vitest": "^1.0.0" | ||
} | ||
"name": "flagged", | ||
"description": "Feature flags for React made easy with hooks, HOC and Render Props", | ||
"version": "2.0.10", | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">=18.0.0" | ||
}, | ||
"type": "module", | ||
"sideEffects": false, | ||
"exports": { | ||
"./package.json": "./package.json", | ||
".": "./build/index.js" | ||
}, | ||
"scripts": { | ||
"prepare": "npm run build", | ||
"build": "tsc --project tsconfig.json --outDir ./build", | ||
"postbuild": "prettier --write \"build/**/*.js\" \"build/**/*.d.ts\"", | ||
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.tsx\" \"test/**/*.ts\" \"test/**/*.tsx\" \"*.md\" \"package.json\"", | ||
"typecheck": "tsc --project tsconfig.json --noEmit", | ||
"lint": "eslint --ext .ts,.tsx src/", | ||
"test": "vitest --run", | ||
"test:watch": "vitest", | ||
"test:coverage": "vitest --coverage", | ||
"test:exports": "bun scripts/check-pkg-exports.ts" | ||
}, | ||
"homepage": "https://github.com/sergiodxa/flagged", | ||
"author": { | ||
"name": "Sergio Xalambrí", | ||
"url": "https://sergiodxa.com", | ||
"email": "[email protected]" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/sergiodxa/flagged.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/sergiodxa/flagged/issues" | ||
}, | ||
"main": "dist/index.js", | ||
"module": "dist/flagged.esm.js", | ||
"typings": "dist/index.d.ts", | ||
"files": [ | ||
"dist" | ||
], | ||
"keywords": [ | ||
"react", | ||
"feature flags", | ||
"flags", | ||
"features", | ||
"hooks", | ||
"hoc", | ||
"high order component", | ||
"render props", | ||
"typescript", | ||
"types" | ||
], | ||
"peerDependencies": { | ||
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" | ||
}, | ||
"devDependencies": { | ||
"@arethetypeswrong/cli": "^0.13.1", | ||
"@testing-library/jest-dom": "^6.4.2", | ||
"@testing-library/react": "^14.0.0", | ||
"@types/bun": "^1.0.10", | ||
"@types/react": "^18.2.25", | ||
"@typescript-eslint/eslint-plugin": "^6.7.4", | ||
"@typescript-eslint/parser": "^6.7.4", | ||
"@vitejs/plugin-react": "^4.1.0", | ||
"@vitest/coverage-v8": "^0.34.6", | ||
"eslint": "^8.12.0", | ||
"eslint-config-prettier": "^9.0.0", | ||
"eslint-import-resolver-typescript": "^3.6.1", | ||
"eslint-plugin-cypress": "^2.15.1", | ||
"eslint-plugin-import": "^2.28.1", | ||
"eslint-plugin-jest-dom": "^5.1.0", | ||
"eslint-plugin-jsx-a11y": "^6.7.1", | ||
"eslint-plugin-prettier": "^5.0.0", | ||
"eslint-plugin-promise": "^6.1.1", | ||
"eslint-plugin-react": "^7.33.2", | ||
"eslint-plugin-react-hooks": "^4.6.0", | ||
"eslint-plugin-testing-library": "^6.0.2", | ||
"eslint-plugin-unicorn": "^49.0.0", | ||
"happy-dom": "^12.9.0", | ||
"prettier": "^3.2.5", | ||
"react": "^18.0.0", | ||
"typescript": "^5.2.2", | ||
"vite": "^5.0.0", | ||
"vitest": "^1.0.0" | ||
} | ||
} |