-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #317 from emulsify-ds/fix-paths-to-core
Fix paths to core
- Loading branch information
Showing
4 changed files
with
22 additions
and
24 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 |
---|---|---|
@@ -1,16 +1,14 @@ | ||
**What:** | ||
**This PR does the following:** | ||
- Adds functionality bullet item | ||
- Fixes this or that bullet item | ||
|
||
### Related Issue(s) | ||
- [Title of the issue](https://github.com/emulsify-ds/emulsify-drupal/issues/1) (if applicable) | ||
|
||
_brief description of change_ | ||
### Notes: | ||
- (optional) Document any intentionally unfinished parts or known issues within this PR | ||
|
||
**Why:** | ||
### Functional Testing: | ||
- [ ] Document steps that allow someone to fully test your code changes. Include screenshot and links when appropriate. | ||
|
||
_why this change improves emulsify_ | ||
|
||
**How:** | ||
|
||
_more details of changes made_ | ||
|
||
**To Test:** | ||
|
||
- [ ] Step 1 | ||
- [ ] Step 2 |
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
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,5 +1,5 @@ | ||
{ | ||
"extends": [ | ||
"../../node_modules/emulsify-core/config/.stylelintrc.json" | ||
"../../node_modules/@emulsify/core/config/.stylelintrc.json" | ||
] | ||
} |
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 |
---|---|---|
|
@@ -13,26 +13,26 @@ | |
"author": "Four Kitchens <[email protected]>", | ||
"license": "ISC", | ||
"scripts": { | ||
"a11y": "npm run storybook-build && node_modules/emulsify-core/scripts/a11y.js -r", | ||
"build": "webpack --config node_modules/emulsify-core/config/webpack/webpack.prod.js", | ||
"a11y": "npm run storybook-build && node_modules/@emulsify/core/scripts/a11y.js -r", | ||
"build": "webpack --config node_modules/@emulsify/core/config/webpack/webpack.prod.js", | ||
"coverage": "npm run test && open-cli .coverage/lcov-report/index.html", | ||
"develop": "concurrently --raw \"npm run webpack\" \"npm run storybook\"", | ||
"format": "npm run lint-fix; npm run prettier-fix", | ||
"lint": "npm run lint-js; npm run lint-styles", | ||
"lint-fix": "npm run lint-js -- --fix; npm run lint-styles -- --fix", | ||
"lint-js": "eslint --config config/emulsify-core/eslintrc.config.json --no-eslintrc --no-error-on-unmatched-pattern ./components", | ||
"lint-js": "eslint --config config/@emulsify/core/eslintrc.config.json --no-eslintrc --no-error-on-unmatched-pattern ./components", | ||
"lint-staged": "lint-staged", | ||
"lint-styles": "stylelint --config config/emulsify-core/stylelintrc.config.json './components/**/*.scss'", | ||
"prettier": "prettier --config config/emulsify-core/prettierrc.config.json --ignore-path config/emulsify-core/.prettierignore --ignore-unknown \"./components/**/*.{js,yml,scss,md}\"", | ||
"prettier-fix": "prettier --config config/emulsify-core/prettierrc.config.json --ignore-path config/emulsify-core/.prettierignore --write --ignore-unknown \"./components**/*.{js,yml,scss,md}\"", | ||
"storybook": "storybook dev -c node_modules/emulsify-core/.storybook --ci -s ../../../dist,../../../assets/images,../../../assets/icons -p 6006", | ||
"storybook-build": "storybook build -c node_modules/emulsify-core/.storybook -s ./dist,./assets/images,./assets/icons -o .out", | ||
"lint-styles": "stylelint --config config/@emulsify/core/stylelintrc.config.json './components/**/*.scss'", | ||
"prettier": "prettier --config config/@emulsify/core/prettierrc.config.json --ignore-path config/@emulsify/core/.prettierignore --ignore-unknown \"./components/**/*.{js,yml,scss,md}\"", | ||
"prettier-fix": "prettier --config config/@emulsify/core/prettierrc.config.json --ignore-path config/@emulsify/core/.prettierignore --write --ignore-unknown \"./components**/*.{js,yml,scss,md}\"", | ||
"storybook": "storybook dev -c node_modules/@emulsify/core/.storybook --ci -s ../../../../dist,../../../../assets/images,../../../../assets/icons -p 6006", | ||
"storybook-build": "storybook build -c node_modules/@emulsify/core/.storybook -s ./dist,./assets/images,./assets/icons -o .out", | ||
"storybook-deploy": "storybook-to-ghpages -o .out", | ||
"test": "jest --coverage --config ./config/jest.config.js", | ||
"twatch": "jest --no-coverage --watch --verbose", | ||
"webpack": "webpack --watch --config node_modules/emulsify-core/config/webpack/webpack.dev.js" | ||
"webpack": "webpack --watch --config node_modules/@emulsify/core/config/webpack/webpack.dev.js" | ||
}, | ||
"dependencies": { | ||
"@emulsify/core": "^1.1.0", | ||
"@emulsify/core": "^1.1.2" | ||
} | ||
} |