@1024pix/pix-ui 24.0.2 → 24.0.3
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/CHANGELOG.md +6 -0
- package/package.json +5 -2
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@1024pix/pix-ui",
|
|
3
|
-
"version": "24.0.
|
|
3
|
+
"version": "24.0.3",
|
|
4
4
|
"description": "Pix-UI is the implementation of Pix design principles and guidelines for its products.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -25,7 +25,9 @@
|
|
|
25
25
|
"scripts": {
|
|
26
26
|
"build": "./scripts/build.sh",
|
|
27
27
|
"build-ember": "ember build --environment=production",
|
|
28
|
+
"serve-ember": "ember serve",
|
|
28
29
|
"build-storybook": "ember build && cp -v CNAME dist && build-storybook -s dist",
|
|
30
|
+
"serve-storybook": "start-storybook --port 9001 --static-dir dist",
|
|
29
31
|
"clean": "rm -rf dist node_modules",
|
|
30
32
|
"deploy-storybook": "storybook-to-ghpages",
|
|
31
33
|
"lint": "npm run lint:js && npm run lint:hbs",
|
|
@@ -36,7 +38,8 @@
|
|
|
36
38
|
"lint:js:fix": "npm run lint:js -- --fix",
|
|
37
39
|
"preinstall": "npx check-engine",
|
|
38
40
|
"start": "ember serve",
|
|
39
|
-
"
|
|
41
|
+
"prestorybook": "ember build",
|
|
42
|
+
"storybook": "npm-run-all --parallel serve-ember serve-storybook",
|
|
40
43
|
"test": "ember test",
|
|
41
44
|
"test:ember": "ember test",
|
|
42
45
|
"test:ember-compatibility": "ember try:each"
|