mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 04:09:12 +00:00
Update package and repo
This commit is contained in:
@@ -4,7 +4,7 @@ Shoelace is an open source project, meaning everyone can use it and contribute t
|
||||
|
||||
## Using the Issue Tracker
|
||||
|
||||
The [issue tracker](https://github.com/claviska/shoelace/issues) is for bug reports, feature requests, and pull requests.
|
||||
The [issue tracker](https://github.com/shoelace-style/shoelace/issues) is for bug reports, feature requests, and pull requests.
|
||||
|
||||
- Please **do not** use the issue tracker for personal support requests. Please [ask your question](https://stackoverflow.com/questions/ask) on StackOverflow instead.
|
||||
- Please **do not** derail, hijack, or troll issues. Keep the discussion on topic and be respectful of others.
|
||||
|
||||
@@ -13,7 +13,7 @@ Designed in New Hampshire by [Cory LaViska](https://twitter.com/claviska).
|
||||
|
||||
Documentation: [shoelace.style](https://shoelace.style)
|
||||
|
||||
Source: [github.com/claviska/shoelace](https://github.com/claviska/shoelace)
|
||||
Source: [github.com/shoelace-style/shoelace](https://github.com/shoelace-style/shoelace)
|
||||
|
||||
Twitter: [@shoelace_style](https://twitter.com/shoelace_style)
|
||||
|
||||
@@ -35,7 +35,7 @@ The build is done through a combination of Stencil's CLI and a handful of custom
|
||||
|
||||
### Forking the Repo
|
||||
|
||||
Start by [forking the repo](https://github.com/claviska/shoelace/fork) on GitHub, then clone it locally and install dependencies.
|
||||
Start by [forking the repo](https://github.com/shoelace-style/shoelace/fork) on GitHub, then clone it locally and install dependencies.
|
||||
|
||||
```sh
|
||||
git clone https://github.com/YOUR_GITHUB_USERNAME/shoelace
|
||||
@@ -80,7 +80,7 @@ Designing, developing, and supporting this library requires a lot of time, effor
|
||||
👇 Your support is very much appreciated! 👇
|
||||
|
||||
- [Become a sponsor](https://github.com/sponsors/claviska)
|
||||
- [Star on GitHub](https://github.com/claviska/shoelace/stargazers)
|
||||
- [Star on GitHub](https://github.com/shoelace-style/shoelace/stargazers)
|
||||
- [Follow on Twitter](https://twitter.com/shoelace_style)
|
||||
|
||||
Whether you're building Shoelace or building something _with_ Shoelace — have fun creating! 🥾
|
||||
|
||||
@@ -241,7 +241,7 @@
|
||||
<a class="repo-button repo-button--small repo-button--sponsor" href="https://github.com/sponsors/claviska" rel="noopener" target="_blank">
|
||||
<sl-icon name="heart"></sl-icon> Sponsor
|
||||
</a>
|
||||
<a class="repo-button repo-button--small repo-button--github" href="https://github.com/claviska/shoelace/stargazers" rel="noopener" target="_blank">
|
||||
<a class="repo-button repo-button--small repo-button--github" href="https://github.com/shoelace-style/shoelace/stargazers" rel="noopener" target="_blank">
|
||||
<sl-icon src="/assets/images/github.svg"></sl-icon> Star
|
||||
</a>
|
||||
<a class="repo-button repo-button--small repo-button--twitter" href="https://twitter.com/shoelace_style" rel="noopener" target="_blank">
|
||||
|
||||
@@ -9,8 +9,8 @@ The easiest way to install Shoelace is with the lazy loader via CDN. A lightweig
|
||||
To install the lazy loader, add the following tags to your page.
|
||||
|
||||
```html
|
||||
<link rel="stylesheet" href="https://unpkg.com/@claviska/shoelace@%VERSION%/shoelace.css">
|
||||
<script type="module" src="https://unpkg.com/@claviska/shoelace@%VERSION%/shoelace.esm.js"></script>
|
||||
<link rel="stylesheet" href="https://unpkg.com/@shoelace-style/shoelace@%VERSION%/shoelace.css">
|
||||
<script type="module" src="https://unpkg.com/@shoelace-style/shoelace@%VERSION%/shoelace.esm.js"></script>
|
||||
```
|
||||
|
||||
Now you can [start using components!](/getting-started/usage.md)
|
||||
@@ -22,9 +22,9 @@ Another way to consume the library is with the custom elements bundle. Compared
|
||||
To install the custom elements bundle, add the following tags to your page.
|
||||
|
||||
```html
|
||||
<link rel="stylesheet" href="https://unpkg.com/@claviska/shoelace@%VERSION%/shoelace.css">
|
||||
<link rel="stylesheet" href="https://unpkg.com/@shoelace-style/shoelace@%VERSION%/shoelace.css">
|
||||
<script type="module">
|
||||
import { defineCustomElements } from 'https://unpkg.com/@claviska/shoelace@%VERSION%/custom-elements-bundle';
|
||||
import { defineCustomElements } from 'https://unpkg.com/@shoelace-style/shoelace@%VERSION%/custom-elements-bundle';
|
||||
defineCustomElements();
|
||||
</script>
|
||||
```
|
||||
@@ -36,10 +36,10 @@ Now you can [start using components!](/getting-started/usage.md)
|
||||
If you don't want to use the CDN, you can install Shoelace locally using the following command.
|
||||
|
||||
```sh
|
||||
npm install @claviska/shoelace
|
||||
npm install @shoelace-style/shoelace
|
||||
```
|
||||
|
||||
It's up to you to make the source files available to your app. One way to do this is to create a route in your app called `/assets/shoelace` that serves static files from `node_modules/@claviska/shoelace`.
|
||||
It's up to you to make the source files available to your app. One way to do this is to create a route in your app called `/assets/shoelace` that serves static files from `node_modules/@shoelace-style/shoelace`.
|
||||
|
||||
Once you've done that, add the following tags to your page. Make sure to update `href` and `src` so they point to the route you created.
|
||||
|
||||
|
||||
@@ -14,8 +14,8 @@ Designed in New Hampshire by [Cory LaViska](https://twitter.com/claviska).
|
||||
Add the following code to your page.
|
||||
|
||||
```html
|
||||
<link rel="stylesheet" src="https://unpkg.com/@claviska/shoelace@%VERSION%/shoelace.css">
|
||||
<script type="module" src="https://unpkg.com/@claviska/shoelace@%VERSION%/shoelace.esm.js"></script>
|
||||
<link rel="stylesheet" src="https://unpkg.com/@shoelace-style/shoelace@%VERSION%/shoelace.css">
|
||||
<script type="module" src="https://unpkg.com/@shoelace-style/shoelace@%VERSION%/shoelace.esm.js"></script>
|
||||
```
|
||||
|
||||
Now you have access to all of Shoelace's components! Try adding a button:
|
||||
@@ -70,7 +70,7 @@ Designing, developing, and supporting this library requires a lot of time, effor
|
||||
<sl-icon name="heart"></sl-icon> Become a sponsor
|
||||
</a>
|
||||
|
||||
<a class="repo-button repo-button--github" href="https://github.com/claviska/shoelace/stargazers" rel="noopener" target="_blank">
|
||||
<a class="repo-button repo-button--github" href="https://github.com/shoelace-style/shoelace/stargazers" rel="noopener" target="_blank">
|
||||
<sl-icon src="/assets/images/github.svg"></sl-icon> Star
|
||||
</a>
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ The roadmap tracks the status of components and features that are planned for de
|
||||
|
||||
## 2.1 🤔
|
||||
|
||||
Version 2.1 is still in the planning phase. To request a feature, please [submit an issue](https://github.com/claviska/shoelace/issues) on GitHub. Make sure to search for existing issues and vote using 👍 to add your support!
|
||||
Version 2.1 is still in the planning phase. To request a feature, please [submit an issue](https://github.com/shoelace-style/shoelace/issues) on GitHub. Make sure to search for existing issues and vote using 👍 to add your support!
|
||||
|
||||
?> Is there a feature you really want to see here? Sponsoring Shoelace is the best way to prioritize its development. [Learn more](https://github.com/sponsors/claviska)
|
||||
|
||||
|
||||
@@ -48,7 +48,7 @@
|
||||
crossChapterText: false
|
||||
},
|
||||
repo: '',
|
||||
repo: 'https://github.com/claviska/shoelace/',
|
||||
repo: 'https://github.com/shoelace-style/shoelace/',
|
||||
routerMode: 'hash', // or 'history'
|
||||
search: {
|
||||
maxAge: 86400000, // Expiration time, the default one day
|
||||
|
||||
2
package-lock.json
generated
2
package-lock.json
generated
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "@claviska/shoelace",
|
||||
"name": "@shoelace-style/shoelace",
|
||||
"version": "1.0.0-beta.1",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "@claviska/shoelace",
|
||||
"name": "@shoelace-style/shoelace",
|
||||
"version": "1.0.0-beta.1",
|
||||
"description": "A forward-thinking library of web components.",
|
||||
"main": "dist/index.js",
|
||||
|
||||
Reference in New Issue
Block a user