mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-18 03:26:36 +00:00
chnages to sidenav
This commit is contained in:
parent
6be928a2d3
commit
a77127000d
186 changed files with 10791 additions and 833 deletions
17
package.json
17
package.json
|
@ -1,13 +1,13 @@
|
|||
{
|
||||
"name": "carbon-components-svelte",
|
||||
"version": "0.1.0",
|
||||
"version": "0.2.1",
|
||||
"license": "Apache-2.0",
|
||||
"description": "Svelte implementation of the Carbon Design System",
|
||||
"svelte": "src/index.js",
|
||||
"main": "lib/index.js",
|
||||
"module": "lib/index.mjs",
|
||||
"scripts": {
|
||||
"start": "start-storybook",
|
||||
"start": "start-storybook -p 9090",
|
||||
"build": "rollup -c",
|
||||
"build:storybook": "build-storybook -o docs",
|
||||
"test": "jest --coverage",
|
||||
|
@ -19,6 +19,10 @@
|
|||
"carbon-icons-svelte": "^10.8.1",
|
||||
"flatpickr": "^4.6.3"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"carbon-components": "^10.9.0",
|
||||
"carbon-icons-svelte": "^10.8.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/core": "^7.8.0",
|
||||
"@babel/preset-env": "^7.8.0",
|
||||
|
@ -57,6 +61,7 @@
|
|||
"email": "eric.young.liu@ibm.com"
|
||||
}
|
||||
],
|
||||
"sideEffects": false,
|
||||
"engines": {
|
||||
"node": ">=10",
|
||||
"yarn": ">=1"
|
||||
|
@ -69,7 +74,7 @@
|
|||
},
|
||||
"lint-staged": {
|
||||
"*.{js,svelte}": [
|
||||
"eslint --fix 'src/**'",
|
||||
"eslint --fix",
|
||||
"git add"
|
||||
]
|
||||
},
|
||||
|
@ -93,6 +98,9 @@
|
|||
"js",
|
||||
"svelte"
|
||||
],
|
||||
"moduleNameMapper": {
|
||||
"^carbon-icons-svelte*": "<rootDir>src/internal/Icon.stub.svelte"
|
||||
},
|
||||
"setupFilesAfterEnv": [
|
||||
"regenerator-runtime/runtime",
|
||||
"@testing-library/jest-dom/extend-expect"
|
||||
|
@ -117,7 +125,8 @@
|
|||
"svelte"
|
||||
],
|
||||
"files": [
|
||||
"lib"
|
||||
"lib",
|
||||
"src"
|
||||
],
|
||||
"bugs": "https://github.com/ibm/carbon-components-svelte/issues"
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue