Files
formipay/node_modules/ignore-walk/package.json
dwindown e8fbfb14c1 fix: prevent asset conflicts between React and Grid.js versions
Add coexistence checks to all enqueue methods to prevent loading
both React and Grid.js assets simultaneously.

Changes:
- ReactAdmin.php: Only enqueue React assets when ?react=1
- Init.php: Skip Grid.js when React active on admin pages
- Form.php, Coupon.php, Access.php: Restore classic assets when ?react=0
- Customer.php, Product.php, License.php: Add coexistence checks

Now the toggle between Classic and React versions works correctly.

Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-18 17:02:14 +07:00

55 lines
1.2 KiB
JSON

{
"name": "ignore-walk",
"version": "4.0.1",
"description": "Nested/recursive `.gitignore`/`.npmignore` parsing and filtering.",
"main": "index.js",
"devDependencies": {
"@npmcli/lint": "^1.0.2",
"mkdirp": "^0.5.1",
"mutate-fs": "^1.1.0",
"rimraf": "^2.6.1",
"tap": "^15.0.6"
},
"scripts": {
"test": "tap",
"posttest": "npm run lint --",
"lint": "npm run npmclilint -- \"*.*js\" \"test/**/*.*js\"",
"eslint": "eslint",
"lintfix": "npm run lint -- --fix",
"preversion": "npm test",
"postversion": "npm publish",
"postpublish": "git push origin --follow-tags",
"npmclilint": "npmcli-lint",
"postsnap": "npm run lintfix --"
},
"keywords": [
"ignorefile",
"ignore",
"file",
".gitignore",
".npmignore",
"glob"
],
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/isaacs/ignore-walk.git"
},
"files": [
"index.js"
],
"dependencies": {
"minimatch": "^3.0.4"
},
"tap": {
"test-env": "LC_ALL=sk",
"before": "test/00-setup.js",
"after": "test/zz-cleanup.js",
"jobs": 1
},
"engines": {
"node": ">=10"
}
}