single-spa-vue
Advanced tools
Comparing version 1.10.1 to 2.0.0
{ | ||
"name": "single-spa-vue", | ||
"version": "1.10.1", | ||
"version": "2.0.0", | ||
"description": "a single-spa plugin for vue.js applications", | ||
"main": "lib/single-spa-vue.js", | ||
"main": "dist/umd/single-spa-vue.js", | ||
"module": "dist/esm/single-spa-vue.js", | ||
"exports": { | ||
".": { | ||
"import": "./dist/esm/single-spa-vue.js", | ||
"require": "./dist/umd/single-spa-vue.js" | ||
} | ||
}, | ||
"scripts": { | ||
"prepublishOnly": "yarn build", | ||
"build": "rimraf lib && rollup -c", | ||
"build": "rimraf dist && rollup -c", | ||
"test": "concurrently -n w: 'yarn:test:*'", | ||
"test:integration": "cross-env BABEL_ENV=test jest", | ||
"test:types": "tsd", | ||
"prettier": "prettier --write './**'", | ||
"format": "prettier --write .", | ||
"lint": "eslint src" | ||
@@ -25,4 +32,3 @@ }, | ||
"files": [ | ||
"lib", | ||
"src", | ||
"dist", | ||
"types" | ||
@@ -46,24 +52,24 @@ ], | ||
"devDependencies": { | ||
"@babel/core": "^7.8.4", | ||
"@babel/preset-env": "^7.8.4", | ||
"@rollup/plugin-commonjs": "^11.0.2", | ||
"@rollup/plugin-node-resolve": "^7.1.1", | ||
"@types/jest": "^25.1.2", | ||
"babel-eslint": "^10.0.3", | ||
"babel-jest": "^25.1.0", | ||
"concurrently": "^5.1.0", | ||
"@babel/core": "^7.12.3", | ||
"@babel/preset-env": "^7.12.1", | ||
"@rollup/plugin-commonjs": "^15.1.0", | ||
"@rollup/plugin-node-resolve": "^9.0.0", | ||
"@types/jest": "^26.0.15", | ||
"babel-eslint": "^10.1.0", | ||
"babel-jest": "^26.6.1", | ||
"concurrently": "^5.3.0", | ||
"cross-env": "^7.0.2", | ||
"css.escape": "^1.5.1", | ||
"eslint": "^6.8.0", | ||
"eslint": "^7.11.0", | ||
"eslint-config-important-stuff": "^1.1.0", | ||
"eslint-config-prettier": "^6.10.0", | ||
"eslint-plugin-prettier": "^3.1.2", | ||
"husky": "^4.2.3", | ||
"jest": "^25.1.0", | ||
"prettier": "^1.19.1", | ||
"pretty-quick": "^2.0.1", | ||
"eslint-config-prettier": "^6.14.0", | ||
"eslint-plugin-prettier": "^3.1.4", | ||
"husky": "^4.3.0", | ||
"jest": "^26.6.1", | ||
"prettier": "^2.1.2", | ||
"pretty-quick": "^3.1.0", | ||
"rimraf": "^3.0.2", | ||
"rollup": "^1.31.1", | ||
"rollup-plugin-babel": "^4.3.3", | ||
"rollup-plugin-terser": "^5.2.0", | ||
"rollup": "^2.32.1", | ||
"rollup-plugin-babel": "^4.4.0", | ||
"rollup-plugin-terser": "^7.0.2", | ||
"tsd": "^0.13.1" | ||
@@ -70,0 +76,0 @@ }, |
@@ -5,3 +5,3 @@ import ".."; | ||
SingleSpaOptsVue2, | ||
SingleSpaOptsVue3 | ||
SingleSpaOptsVue3, | ||
} from "single-spa-vue"; | ||
@@ -15,3 +15,3 @@ import { expectAssignable } from "tsd"; | ||
Vue, | ||
appOptions | ||
appOptions, | ||
}; | ||
@@ -25,5 +25,5 @@ expectAssignable<SingleSpaVueOpts>(optsVue2); | ||
appOptions, | ||
handleInstance: (instance: any) => {} | ||
handleInstance: (instance: any) => {}, | ||
}; | ||
expectAssignable<SingleSpaVueOpts>(optsVue3); | ||
singleSpaVue(optsVue3); |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
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
55951
11
109