@xylabs/sdk-react 2.9.8 → 2.9.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -8
- package/rollup.config.js +2 -1
package/package.json
CHANGED
|
@@ -117,18 +117,11 @@
|
|
|
117
117
|
},
|
|
118
118
|
"scripts": {
|
|
119
119
|
"build-storybook": "build-storybook",
|
|
120
|
-
"compile": "rm -r -f dist && yarn compile-rollup && yarn compile-tsc && yarn copy-svg && yarn copy-png && yarn copy-jpg && yarn copy-gif",
|
|
121
|
-
"copy-gif": "yarn copyfiles -u 1 \"./src/**/*.gif\" dist",
|
|
122
|
-
"copy-jpg": "yarn copyfiles -u 1 \"./src/**/*.jpg\" dist",
|
|
123
|
-
"copy-png": "yarn copyfiles -u 1 \"./src/**/*.png\" dist",
|
|
124
|
-
"copy-svg": "yarn copyfiles -u 1 \"./src/**/*.svg\" dist",
|
|
125
|
-
"compile-rollup": "rollup -c",
|
|
126
|
-
"compile-tsc": "tsc -p tsconfig.json",
|
|
127
120
|
"lint-pkg": "npmPkgJsonLint .",
|
|
128
121
|
"start": "start-storybook -p 6006",
|
|
129
122
|
"test": "env TS_NODE_PROJECT=\"tsconfig.test.json\" mocha -r ts-node/register 'src/**/*.spec.ts'"
|
|
130
123
|
},
|
|
131
124
|
"sideEffects": false,
|
|
132
125
|
"types": "dist/index.d.ts",
|
|
133
|
-
"version": "2.9.
|
|
126
|
+
"version": "2.9.9"
|
|
134
127
|
}
|
package/rollup.config.js
CHANGED