Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add apiExample js file to dist #7

Merged
merged 2 commits into from
Feb 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/blueprint.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: Component Blueprint
about: Checklist for releasing a new component blueprint
title: '[Component Blueprint]'
labels: '[namespace]-[name], Type: Design, not-reviewed'
labels: 'auro-dialog, Type: Design, not-reviewed'
assignees: leeejune
---

Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: '[issue summary] Please verify version before submitting new issue'
labels:
- 'Type: Bug'
- not-reviewed
- '[namespace]-[name]'
- 'auro-dialog'
body:
- type: markdown
attributes:
Expand All @@ -13,7 +13,7 @@ body:
- type: input
id: version
attributes:
label: Please verify the version of [namespace]-[name] you have installed
label: Please verify the version of auro-dialog you have installed
- type: markdown
attributes:
value: >
Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: Feature request
description: Suggest an idea for this project
title: '[namespace]-[name]: [feature summary]'
title: 'auro-dialog: [feature summary]'
labels:
- 'Type: Feature'
- not-reviewed
- '[namespace]-[name]'
- 'auro-dialog'
body:
- type: textarea
id: request
Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/general-support.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: General support
description: Suggestions that are not related to bugs or new features
title: '[namespace]-[name]: [issue]'
title: 'auro-dialog: [issue]'
labels:
- 'Type: Question'
- 'Type: Feature'
- not-reviewed
- '[namespace]-[name]'
- 'auro-dialog'
body:
- type: textarea
id: request
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/publish_component.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: Publish Component
about: Create a ticket to drive compliance before publishing a new component to Auro Design System
title: 'Publish to Auro Design System'
labels: '[namespace]-[name], not-reviewed'
labels: 'auro-dialog, not-reviewed'
---

# Publish Component
Expand Down
2 changes: 1 addition & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ coverage/
docs/
scripts/
test/
apiExamples/
apiExamples/*.html
docTemplates/
demo/**/*.css
demo/**/*.scss
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
"bundler:test": "rollup -c -w",
"scssLint": "stylelint \"./src/**/*.scss\"",
"dev": "concurrently --kill-others \"npm run build:watch\" \"npm run serve\"",
"dist:js": "copyfiles -u 1 -V './src/**/*.js' ./dist",
"dist:js": "copyfiles -u 1 -V './src/**/*.js' './apiExamples/**/*.js' ./dist",
"esLint": "./node_modules/.bin/eslint src/**/*.js",
"linters": "npm-run-all scssLint esLint",
"preCommit": "node scripts/pre-commit.mjs",
Expand Down