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

Changed _dev-only to dev-only #478

Merged
merged 4 commits into from
Oct 26, 2023
Merged
Show file tree
Hide file tree
Changes from 3 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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ Changelog is rather internal in nature. See release notes for the public overvie

## Version 2.0.0

- [#478]
- **Description:** Changed _dev-only to dev-only
- **Products impact:** Script Enhancement
- **Addresses:** https://github.com/learningequality/kolibri-design-system/issues/474
- **Components:** none
- **Breaking:** no
- **Impacts a11y:** no
- **Guidance:** -

BabyElias marked this conversation as resolved.
Show resolved Hide resolved
- [#464]
- **Description:** Add KTextTruncator
- **Products impact:** new API
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
"license": "MIT",
"author": "Learning Equality",
"scripts": {
"dev": "npm-run-all --parallel _dev-only _lint-watch-fix _api-watch pregenerate",
"dev": "npm-run-all --parallel dev-only _lint-watch-fix _api-watch pregenerate",
"generate": "yarn run pregenerate && nuxt generate",
"lint": "kolibri-tools lint --pattern '**/*.{js,vue,scss,less,css}' -i ,'**/node_modules/**','**/.nuxt/**','**/dist/**','**/lib/KIcon/precompiled-icons/**','**/lib/keen/**','**/docs/environment.js','**/docs/jsdocs.js'",
"lint-fix": "yarn lint -w",
"lint-watch": "yarn lint -m",
"pregenerate": "node utils/pregenerate.js",
"_dev-only": "nuxt --port 4000",
"dev-only": "nuxt --port 4000",
BabyElias marked this conversation as resolved.
Show resolved Hide resolved
"precompile-svgs": "node utils/precompileSvgs/index.js && yarn run pregenerate",
"precompile-custom-svgs": "node utils/precompileSvgs/index.js --custom && yarn run pregenerate",
"_lint-watch-fix": "yarn lint -w -m",
Expand Down
Loading