Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@marcoms/make-element

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@marcoms/make-element - npm Package Compare versions

Comparing version 4.1.2 to 4.1.3

test/cacheIds.ts

61

karma.conf.js
module.exports = (config) => {
config.set({
frameworks: ['mocha', 'karma-typescript'],
browsers: ['chromeHeadless'],
singleRun: true,
concurrency: Infinity,
reporters: ['mocha'],
port: 9876,
colors: true,
logLevel: config.LOG_WARN,
config.set({
frameworks: ['mocha', 'karma-typescript'],
browsers: ['ChromeHeadless'],
singleRun: true,
concurrency: Infinity,
reporters: ['mocha'],
port: 9876,
colors: true,
logLevel: config.LOG_WARN,
files: [
'src/*.ts',
],
files: [
'src/*.ts',
'test/*.ts',
preprocessors: {
'**/*.ts': ['karma-typescript'],
},
{
pattern: 'test/*.html',
watched: false,
included: false,
served: true,
},
],
karmaTypescriptConfig: {
compilerOptions: {
target: 'es6',
},
},
preprocessors: {
'**/*.ts': ['karma-typescript'],
},
customLaunchers: {
chromeHeadless: {
base: 'Chrome',
flags: [
'--headless',
'--disable-gpu',
'--remote-debugging-port=9222',
],
},
},
})
karmaTypescriptConfig: {
compilerOptions: {
target: 'es6',
baseUrl: __dirname,
},
},
});
};
{
"name": "@marcoms/make-element",
"version": "4.1.2",
"version": "4.1.3",
"description": "Create custom elements without boilerplate",
"main": "build/make-element.js",
"types": "build/src/index.d.ts",
"repository": {},

@@ -16,3 +17,4 @@ "keywords": [

"scripts": {
"build": "webpack"
"build": "webpack",
"test": "karma start"
},

@@ -33,4 +35,5 @@ "author": "Marco Scannadinari <m@scannadinari.co.uk>",

"ts-loader": "^2.2.2",
"tslint": "^5.5.0",
"typescript": "^2.4.1"
}
}

@@ -8,3 +8,3 @@ export interface ArbitraryFn { (...args: any[]): any; }

type ReadyFn = ArbitraryFn;
export type ReadyFn = ArbitraryFn;

@@ -11,0 +11,0 @@ export interface ElementDef {

{
"compilerOptions": {
"target": "es6"
"target": "es6",
"declaration": true
}
}

@@ -21,2 +21,5 @@ const path = require('path');

loader: 'ts-loader',
options: {
logLevel: 'warn',
},
},

@@ -23,0 +26,0 @@ ]

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