New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@aurelia/kernel

Package Overview
Dependencies
Maintainers
1
Versions
1123
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aurelia/kernel - npm Package Compare versions

Comparing version 2.0.1-dev.202311060259 to 2.0.1-dev.202311120949

dist/cjs/index.cjs.map

2

dist/types/resource.d.ts
import { IContainer } from './di';
import { Constructable } from './interfaces';
export type ResourceType<TUserType extends Constructable = Constructable, TResInstance extends {} = {}, TResType extends {} = {}, TUserInstance extends InstanceType<TUserType> = InstanceType<TUserType>> = (new (...args: unknown[]) => TResInstance & TUserInstance) & {
export type ResourceType<TUserType extends Constructable = Constructable, TResInstance extends {} = {}, TResType extends {} = {}, TUserInstance extends InstanceType<TUserType> = InstanceType<TUserType>> = (new (...args: any[]) => TResInstance & TUserInstance) & {
readonly aliases?: readonly string[];

@@ -5,0 +5,0 @@ } & TResType & TUserType;

{
"name": "@aurelia/kernel",
"version": "2.0.1-dev.202311060259",
"version": "2.0.1-dev.202311120949",
"main": "dist/cjs/index.cjs",

@@ -27,7 +27,3 @@ "module": "dist/esm/index.mjs",

"files": [
"dist/**/*.cjs",
"dist/**/*.dev.cjs.map",
"dist/**/*.mjs",
"dist/**/*.dev.mjs.map",
"dist/**/*.d.ts",
"dist",
"src/**/*.ts",

@@ -40,3 +36,3 @@ "README.md",

"lint": "eslint --cache --ext .js,.ts src/",
"lint:ci": "eslint --cache --ext .js,.ts --quiet --report-unused-disable-directives src/",
"lint:ci": "eslint --ext .js,.ts --quiet --report-unused-disable-directives src/",
"build": "rollup -c",

@@ -54,7 +50,7 @@ "dev": "rollup -c -w",

"dependencies": {
"@aurelia/metadata": "2.0.1-dev.202311060259",
"@aurelia/platform": "2.0.1-dev.202311060259"
"@aurelia/metadata": "2.0.1-dev.202311120949",
"@aurelia/platform": "2.0.1-dev.202311120949"
},
"devDependencies": {
"typescript": "5.1.6"
"typescript": "5.2.2"
},

@@ -61,0 +57,0 @@ "engines": {

@@ -12,3 +12,4 @@ import { IContainer } from './di';

> = (
new (...args: unknown[]) => TResInstance & TUserInstance
// eslint-disable-next-line @typescript-eslint/no-explicit-any
new (...args: any[]) => TResInstance & TUserInstance
) & {

@@ -15,0 +16,0 @@ readonly aliases?: readonly string[];

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc