Skip to content
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
9 changes: 9 additions & 0 deletions lib/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,13 @@
<!--Copyright (c) Coherent Labs AD. All rights reserved. -->

<div style="background-color: rgba(255, 229, 100, 0.3); border-left: 5px solid #e5c100; padding: 15px; margin-bottom: 20px; border-radius: 4px;">
<h3 style="margin-top: 0">⚠️ Package Deprecated</h3>
<p style=" margin-bottom: 0;">
This legacy package has been deprecated in favor of the updated Gameface UI suite.
Please switch to the official framework at <a href="https://gameface-ui.coherent-labs.com/" style=" font-weight: bold; text-decoration: underline;">Gameface UI</a>.
</p>
</div>

Component library which supports the creation and usage of custom elements. Provides a way to encapsulate a component specific functionality and reuse it. Similar to the [Web Components suite](https://developer.mozilla.org/en-US/docs/Web/Web_Components). Exports a `Components` class that can be instantiated.

The fundamental idea in the Component System is the same as in the standard Web Components. However, there are some key points that make them different.
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"build": "node ./scripts/build.js",
"link": "node ./scripts/link.js",
"unlink": "node ./scripts/unlink.js",
"build:dev": "npm i && npm run clean && npm run link && npm run build -- -ni && npm run build:demo && npm run build:im",
"build:dev": "npm i && npm run clean && npm run link && npm run build -- -ni && npm run build:demo",
"build:library": "node ./scripts/build.js --library",
"build:documentation": "node scripts/transfer-doc-files.js",
"build:im": "node scripts/build-im.js",
Expand All @@ -21,7 +21,7 @@
"pack": "node ./scripts/pack.js",
"pack:library": "node ./scripts/pack.js --directory ./lib",
"build:demo": "node ./scripts/build-demo.js",
"rebuild": "npm i && npm run clean && npm run link && npm run build:library && npm run pack:library && npm run build && npm run build:demo && npm run build:im",
"rebuild": "npm i && npm run clean && npm run link && npm run build:library && npm run pack:library && npm run build && npm run build:demo",
"test": "node ./scripts/test.js",
"test:Chrome": "node ./scripts/test.js -- --browsers Chrome",
"publish": "node ./scripts/publish.js",
Expand Down
1 change: 0 additions & 1 deletion scripts/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ function linkDependencies() {
function test(rebuild, browsersArg, noLink = false) {
if (rebuild) {
execSync('npm run build:dev', { cwd: ROOT_FOLDER, stdio: 'inherit' });
execSync('npm run build:im', { cwd: ROOT_FOLDER, stdio: 'inherit' });
}
if (!areComponentsPackaged()) global.process.exit(1);

Expand Down
Loading