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>
114 lines
2.9 KiB
JSON
114 lines
2.9 KiB
JSON
{
|
|
"name": "mitt",
|
|
"version": "3.0.0",
|
|
"description": "Tiny 200b functional Event Emitter / pubsub.",
|
|
"module": "dist/mitt.mjs",
|
|
"main": "dist/mitt.js",
|
|
"jsnext:main": "dist/mitt.mjs",
|
|
"umd:main": "dist/mitt.umd.js",
|
|
"source": "src/index.ts",
|
|
"typings": "index.d.ts",
|
|
"exports": {
|
|
"import": "./dist/mitt.mjs",
|
|
"require": "./dist/mitt.js",
|
|
"default": "./dist/mitt.mjs"
|
|
},
|
|
"scripts": {
|
|
"test": "npm-run-all --silent typecheck lint mocha test-types",
|
|
"mocha": "mocha test",
|
|
"test-types": "tsc test/test-types-compilation.ts --noEmit --strict",
|
|
"lint": "eslint src test --ext ts --ext js",
|
|
"typecheck": "tsc --noEmit",
|
|
"bundle": "microbundle -f es,cjs,umd",
|
|
"build": "npm-run-all --silent clean -p bundle -s docs",
|
|
"clean": "rimraf dist",
|
|
"docs": "documentation readme src/index.ts --section API -q --parse-extension ts",
|
|
"release": "npm run -s build -s && npm t && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"
|
|
},
|
|
"repository": "developit/mitt",
|
|
"keywords": [
|
|
"events",
|
|
"eventemitter",
|
|
"emitter",
|
|
"pubsub"
|
|
],
|
|
"homepage": "https://github.com/developit/mitt",
|
|
"authors": [
|
|
"Jason Miller <jason@developit.ca>"
|
|
],
|
|
"license": "MIT",
|
|
"files": [
|
|
"dist",
|
|
"index.d.ts"
|
|
],
|
|
"mocha": {
|
|
"extension": [
|
|
"ts"
|
|
],
|
|
"require": [
|
|
"ts-node/register",
|
|
"esm"
|
|
],
|
|
"spec": [
|
|
"test/*_test.ts"
|
|
]
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"developit",
|
|
"plugin:@typescript-eslint/eslint-recommended",
|
|
"plugin:@typescript-eslint/recommended"
|
|
],
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"sourceType": "module"
|
|
},
|
|
"env": {
|
|
"browser": true,
|
|
"mocha": true,
|
|
"jest": false,
|
|
"es6": true
|
|
},
|
|
"globals": {
|
|
"expect": true
|
|
},
|
|
"rules": {
|
|
"semi": [
|
|
2,
|
|
"always"
|
|
],
|
|
"jest/valid-expect": 0,
|
|
"@typescript-eslint/no-explicit-any": 0,
|
|
"@typescript-eslint/explicit-function-return-type": 0,
|
|
"@typescript-eslint/explicit-module-boundary-types": 0,
|
|
"@typescript-eslint/no-empty-function": 0,
|
|
"@typescript-eslint/no-non-null-assertion": 0
|
|
}
|
|
},
|
|
"eslintIgnore": [
|
|
"dist",
|
|
"index.d.ts"
|
|
],
|
|
"devDependencies": {
|
|
"@types/chai": "^4.2.11",
|
|
"@types/mocha": "^7.0.2",
|
|
"@types/sinon": "^9.0.4",
|
|
"@types/sinon-chai": "^3.2.4",
|
|
"@typescript-eslint/eslint-plugin": "^3.0.1",
|
|
"@typescript-eslint/parser": "^3.0.1",
|
|
"chai": "^4.2.0",
|
|
"documentation": "^13.0.0",
|
|
"eslint": "^7.1.0",
|
|
"eslint-config-developit": "^1.2.0",
|
|
"esm": "^3.2.25",
|
|
"microbundle": "^0.12.3",
|
|
"mocha": "^8.0.1",
|
|
"npm-run-all": "^4.1.5",
|
|
"rimraf": "^3.0.2",
|
|
"sinon": "^9.0.2",
|
|
"sinon-chai": "^3.5.0",
|
|
"ts-node": "^8.10.2",
|
|
"typescript": "^3.9.7"
|
|
}
|
|
}
|