@raythurnevoid/svelte-context-enhanced
Advanced tools
Comparing version 0.0.6 to 0.0.7
@@ -17,2 +17,1 @@ "use strict"; | ||
exports.createContext = createContext; | ||
//# sourceMappingURL=Context.js.map |
@@ -19,2 +19,1 @@ "use strict"; | ||
exports.createContextStore = createContextStore; | ||
//# sourceMappingURL=ContextStore.js.map |
@@ -8,2 +8,1 @@ "use strict"; | ||
Object.defineProperty(exports, "createContext", { enumerable: true, get: function () { return Context_1.createContext; } }); | ||
//# sourceMappingURL=index.js.map |
@@ -13,2 +13,1 @@ import { getContext, setContext } from "svelte"; | ||
} | ||
//# sourceMappingURL=Context.js.map |
@@ -15,2 +15,1 @@ import { getContext, setContext } from "svelte"; | ||
} | ||
//# sourceMappingURL=ContextStore.js.map |
export { createContextStore } from "./ContextStore"; | ||
export { createContext } from "./Context"; | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "@raythurnevoid/svelte-context-enhanced", | ||
"version": "0.0.6", | ||
"description": "", | ||
"scripts": { | ||
"name": "@raythurnevoid/svelte-context-enhanced", | ||
"version": "0.0.7", | ||
"description": "", | ||
"scripts": { | ||
"clean-lib": "del-cli lib", | ||
"copy:package:cjs": "copyfiles --up 1 cjs/* lib/cjs", | ||
"copy:package": "copyfiles package.json lib", | ||
"copy:src": "copyfiles --up 1 src/lib/*.* lib/src", | ||
"copy:src": "copyfiles --up 2 src/lib/**/* lib/src", | ||
"copy:cjs": "copyfiles --up 2 src/lib/**/*!(.ts) lib/cjs", | ||
"copy": "copyfiles --up 2 src/lib/**/*!(.ts) lib", | ||
"tsc": "tsc -p tsconfig.lib.json", | ||
"tsc:cjs": "tsc -p tsconfig.lib.cjs.json", | ||
"lib": "npm-run-all clean-lib copy:package copy:package:cjs copy:src tsc tsc:cjs", | ||
"lib": "npm-run-all clean-lib copy:package copy:package:cjs copy copy:cjs copy:src tsc tsc:cjs", | ||
"prepackage": "npm run lib", | ||
"package": "npm publish ./lib --access public", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
"import": "./index.js", | ||
"require": "./cjs/index.js" | ||
}, | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
"import": "./index.js", | ||
"require": "./cjs/index.js" | ||
}, | ||
"./cjs/*": "./cjs/*" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://raythurnevoid:6757d77f7939d498560f1557db1864b9f4a4a1bf@github.com/raythurnevoid/svelte-group-components.git" | ||
}, | ||
"author": "Ray Thurne", | ||
"license": "ISC", | ||
"bugs": { | ||
"url": "https://github.com/raythurnevoid/svelte-group-components/issues" | ||
}, | ||
"homepage": "https://github.com/raythurnevoid/svelte-group-components#readme", | ||
"devDependencies": { | ||
"@raythurnevoid/svelte-template": "^0.1.4", | ||
"svelte": "^3.38.2" | ||
} | ||
}, | ||
"browserslist": [ | ||
"> 5%" | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/raythurnevoid/svelte-group-components.git" | ||
}, | ||
"author": "Ray Thurne", | ||
"license": "ISC", | ||
"bugs": { | ||
"url": "https://github.com/raythurnevoid/svelte-group-components/issues" | ||
}, | ||
"homepage": "https://github.com/raythurnevoid/svelte-group-components#readme", | ||
"devDependencies": { | ||
"@raythurnevoid/svelte-template": "^0.1.4", | ||
"svelte": "^3.38.2" | ||
} | ||
} |
9168
198