@domtree/minimal
Advanced tools
Comparing version 0.9.3 to 0.9.4-unstable.229fe05
{ | ||
"root": false, | ||
"overrides": [ | ||
{ | ||
"extends": ["plugin:@starbeam/tight"], | ||
"files": ["index.ts", "src/**/*.ts"], | ||
"parserOptions": { | ||
"project": "workspace/@domtree/minimal/tsconfig.json" | ||
} | ||
} | ||
] | ||
"root": true, | ||
"extends": ["plugin:@starbeam-dev/library:recommended"] | ||
} |
10
index.ts
@@ -15,3 +15,7 @@ import type * as dom from "@domtree/interface"; | ||
// eslint-disable-next-line @typescript-eslint/no-namespace | ||
/* | ||
eslint-disable-next-line @typescript-eslint/no-namespace | ||
-- using a namespace to map onto the `Node.*` JavaScript API (so that | ||
you can use `Node.TEXT_NODE` as a type and not `Node["TEXT_NODE"]`) | ||
*/ | ||
export namespace Node { | ||
@@ -80,3 +84,3 @@ export type ELEMENT_NODE = 1; | ||
qualifiedName: string, | ||
options?: { is: string } | ||
options?: { is: string }, | ||
) => Element; | ||
@@ -119,3 +123,3 @@ | ||
qualifiedName: string, | ||
value: string | ||
value: string, | ||
) => void; | ||
@@ -122,0 +126,0 @@ |
{ | ||
"name": "@domtree/minimal", | ||
"version": "0.9.3", | ||
"type": "module", | ||
"version": "0.9.4-unstable.229fe05", | ||
"main": "dist/index.cjs", | ||
"types": "dist/index.d.ts", | ||
"exports": { | ||
"types": "./dist/index.d.ts", | ||
"import": "./dist/index.js", | ||
"default": "./dist/index.cjs" | ||
}, | ||
"starbeam": { | ||
@@ -11,19 +17,12 @@ "source": "ts", | ||
"dependencies": { | ||
"@domtree/interface": "^0.9.3" | ||
"@domtree/interface": "0.9.4-unstable.229fe05" | ||
}, | ||
"devDependencies": { | ||
"@starbeam-dev/build-support": "1.0.0" | ||
"@starbeam-dev/eslint-plugin": "^1.0.6", | ||
"@starbeam-dev/compile": "1.2.0" | ||
}, | ||
"scripts": { | ||
"test:lint": "eslint", | ||
"test:lint": "eslint . --max-warnings 0", | ||
"test:types": "tsc -b" | ||
}, | ||
"exports": { | ||
".": { | ||
"types": "./dist/index.d.ts", | ||
"import": "./dist/index.js", | ||
"default": "./dist/index.cjs" | ||
} | ||
}, | ||
"main": "dist/index.cjs" | ||
} | ||
} |
{ | ||
"extends": "../../../.config/tsconfig/tsconfig.shared.json", | ||
"compilerOptions": { | ||
"composite": true, | ||
"types": ["../../../packages/env.d.ts"], | ||
"declaration": true, | ||
"declarationDir": "../../../dist/types", | ||
"declarationMap": true, | ||
"declarationDir": "../../../dist/types", | ||
"declaration": true, | ||
"outDir": "../../../dist/packages", | ||
"composite": true, | ||
"types": ["../../../packages/env"] | ||
"emitDeclarationOnly": true | ||
}, | ||
"exclude": ["dist/**/*"] | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
11181
2
226
1
+ Added@domtree/interface@0.9.4-unstable.229fe05(transitive)
- Removed@domtree/interface@0.9.3(transitive)