diff --git a/.github/COMMIT_ERROR_ISSUE_TEMPLATE.md b/.github/COMMIT_ERROR_ISSUE_TEMPLATE.md index a5ebe07c..4e97243c 100644 --- a/.github/COMMIT_ERROR_ISSUE_TEMPLATE.md +++ b/.github/COMMIT_ERROR_ISSUE_TEMPLATE.md @@ -1,6 +1,6 @@ --- title: Build error on commit -assignees: hobbes7878, MinamiFunakoshiTR +assignees: hobbes7878 labels: bug --- diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index fee34b12..f0bd34d2 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -11,7 +11,7 @@ Tell us what this PR does or link to any related issues that describe the goal h ### Before submitting, please check that you've -- [ ] Read our [contributing guide](https://github.com/reuters-graphics/graphics-svelte-components/blob/master/CONTRIBUTING.md) at some point +- [ ] Read our [contributing guide](https://github.com/reuters-graphics/graphics-components/blob/master/CONTRIBUTING.md) at some point - [ ] Formatted you code correctly (i.e., prettier cleaned it up) - [ ] Documented any new components or features - [ ] Tagged an editor to review diff --git a/package.json b/package.json index 68864ab0..447627c7 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,8 @@ "new": "node ./bin/newComponent/index.cjs", "build:package": "node ./bin/buildPackage/index.js", "build:docs": "build-storybook -o docs", - "build": "npm-run-all build:package build:docs" + "build": "npm-run-all build:package build:docs", + "prepublishOnly": "npm run build:package" }, "license": "MIT", "types": "dist/@types/index.d.ts", diff --git a/vite.config.ts b/vite.config.ts index 26b13f8f..73d4b632 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -10,7 +10,7 @@ const config = { }, resolve: { alias: { - '@reuters-graphics/graphics-svelte-components': './src', + '@reuters-graphics/graphics-components': './src', $lib: './src', $docs: './src/docs', },