-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update dev dependencies for dev testing
- Loading branch information
1 parent
1620c1a
commit 80c7b68
Showing
5 changed files
with
619 additions
and
441 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,23 +11,27 @@ | |
"author": "Jacob Mischka <[email protected]>", | ||
"license": "MIT", | ||
"scripts": { | ||
"build": "rollup -c", | ||
"build": "rollup -c --bundleConfigAsCjs", | ||
"prepublishOnly": "npm run build", | ||
"format": "prettier --write --plugin-search-dir=. ./src/* ./test/src/*" | ||
}, | ||
"devDependencies": { | ||
"prettier": "^2.3.2", | ||
"prettier-plugin-svelte": "^2.3.1", | ||
"rollup": "^2.47.0", | ||
"rollup-plugin-svelte": "^7.1.0", | ||
"svelte": "^3.0.0", | ||
"svelte2tsx": "^0.4.6" | ||
"prettier": "^3.0.0", | ||
"prettier-plugin-svelte": "^3.0.3", | ||
"rollup": "^3.28.1", | ||
"rollup-plugin-svelte": "^7.1.6", | ||
"svelte": "^4.0.0" | ||
}, | ||
"dependencies": { | ||
"flatpickr": "^4.5.2" | ||
}, | ||
"peerDependencies": { | ||
"svelte": ">= 3.31.0 < 4.1" | ||
"svelte": ">= 3.31.0 < 5.0" | ||
}, | ||
"files": ["dist", "src"] | ||
"files": ["dist", "src"], | ||
"exports": { | ||
".": { | ||
"svelte": "./src/Flatpickr.svelte" | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,23 @@ | ||
{ | ||
"name": "svelte-app", | ||
"version": "1.0.0", | ||
"scripts": { | ||
"build": "rollup -c", | ||
"dev": "rollup -c -w", | ||
"start": "sirv public" | ||
}, | ||
"devDependencies": { | ||
"@rollup/plugin-commonjs": "^19.0.0", | ||
"@rollup/plugin-node-resolve": "^13.0.0", | ||
"rollup": "^2.3.4", | ||
"rollup-plugin-copy": "^3.3.0", | ||
"rollup-plugin-css-only": "^3.1.0", | ||
"rollup-plugin-livereload": "^2.0.0", | ||
"rollup-plugin-svelte": "^7.1.0", | ||
"rollup-plugin-terser": "^7.0.0", | ||
"svelte": "^3.0.0" | ||
}, | ||
"dependencies": { | ||
"sirv-cli": "^1.0.0" | ||
} | ||
"name": "svelte-app", | ||
"version": "1.0.0", | ||
"scripts": { | ||
"build": "rollup -c --bundleConfigAsCjs", | ||
"dev": "rollup -c -w --bundleConfigAsCjs", | ||
"start": "sirv public --port 5000" | ||
}, | ||
"devDependencies": { | ||
"@rollup/plugin-commonjs": "^25.0.4", | ||
"@rollup/plugin-node-resolve": "^15.2.1", | ||
"@rollup/plugin-terser": "^0.4.3", | ||
"rollup": "^3.28.1", | ||
"rollup-plugin-copy": "^3.4.0", | ||
"rollup-plugin-css-only": "^4.3.0", | ||
"rollup-plugin-livereload": "^2.0.5", | ||
"rollup-plugin-svelte": "^7.1.6", | ||
"svelte": "^4.2.0" | ||
}, | ||
"dependencies": { | ||
"sirv-cli": "^2.0.2" | ||
} | ||
} |
Oops, something went wrong.