Skip to content

Commit 9eb1778

Browse files
chore: overhaul project, modernize stack
1 parent 74b7525 commit 9eb1778

24 files changed

+4209
-7631
lines changed

.github/CODEOWNERS

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @ionic-team/stencil
1+
* @stenciljs/technical-steering-committee

.github/ISSUE_TEMPLATE/bug_report.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ body:
77
label: Prerequisites
88
description: Please ensure you have completed all of the following.
99
options:
10-
- label: I have read the [Contributing Guidelines](https://github.com/ionic-team/stencil/blob/main/.github/CONTRIBUTING.md).
10+
- label: I have read the [Contributing Guidelines](https://github.com/stenciljs/core/blob/main/.github/CONTRIBUTING.md).
1111
required: true
12-
- label: I agree to follow the [Code of Conduct](https://github.com/ionic-team/stencil/blob/main/CODE_OF_CONDUCT.md).
12+
- label: I agree to follow the [Code of Conduct](https://github.com/stenciljs/.github/blob/main/CODE_OF_CONDUCT.md).
1313
required: true
14-
- label: I have searched for [existing issues](https://github.com/ionic-team/stencil-store/issues) that already report this problem, without success.
14+
- label: I have searched for [existing issues](https://github.com/stenciljs/store/issues) that already report this problem, without success.
1515
required: true
1616
- type: input
1717
attributes:

.github/ISSUE_TEMPLATE/config.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
contact_links:
22
- name: 💻 Stencil
3-
url: https://github.com/ionic-team/stencil/issues/new/choose
3+
url: https://github.com/stenciljs/core/issues/new/choose
44
about: This issue tracker is not for Stencil compiler issues. Please file compiler issues on the Stencil repo.
55
- name: 📚 Documentation
6-
url: https://github.com/ionic-team/stencil-site/issues/new/choose
6+
url: https://github.com/stenciljs/site/issues/new/choose
77
about: This issue tracker is not for documentation issues. Please file documentation issues on the Stencil site repo.
88
- name: 📝 Create Stencil CLI
9-
url: https://github.com/ionic-team/create-stencil/issues/new/choose
9+
url: https://github.com/stenciljs/create-stencil/issues/new/choose
1010
about: This issue tracker is not for Create Stencil CLI issues. Please file CLI issues on the Create Stencil CLI repo.
1111
- name: 🤔 Support Question
1212
url: https://forum.ionicframework.com/

.github/ISSUE_TEMPLATE/feature_request.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ body:
77
label: Prerequisites
88
description: Please ensure you have completed all of the following.
99
options:
10-
- label: I have read the [Contributing Guidelines](https://github.com/ionic-team/stencil/blob/main/.github/CONTRIBUTING.md).
10+
- label: I have read the [Contributing Guidelines](https://github.com/stenciljs/core/blob/main/.github/CONTRIBUTING.md).
1111
required: true
12-
- label: I agree to follow the [Code of Conduct](https://github.com/ionic-team/stencil/blob/main/CODE_OF_CONDUCT.md).
12+
- label: I agree to follow the [Code of Conduct](https://github.com/stenciljs/.github/blob/main/CODE_OF_CONDUCT.md).
1313
required: true
14-
- label: I have searched for [existing issues](https://github.com/ionic-team/stencil-store/issues) that already include this feature request, without success.
14+
- label: I have searched for [existing issues](https://github.com/stenciljs/store/issues) that already include this feature request, without success.
1515
required: true
1616
- type: textarea
1717
attributes:

.github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- Please refer to our contributing documentation for any questions on submitting a pull request, or let us know here if you need any help: https://github.com/ionic-team/stencil/blob/main/.github/CONTRIBUTING.md -->
1+
<!-- Please refer to our contributing documentation for any questions on submitting a pull request, or let us know here if you need any help: https://github.com/stenciljs/core/blob/main/.github/CONTRIBUTING.md -->
22

33
## Pull request checklist
44

.github/dependabot.yml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: npm
4+
directory: "/"
5+
schedule:
6+
interval: weekly
7+
open-pull-requests-limit: 10
8+
groups:
9+
patch-deps-updates-main:
10+
update-types:
11+
- "patch"
12+
minor-deps-updates-main:
13+
update-types:
14+
- "minor"
15+
major-deps-updates-main:
16+
update-types:
17+
- "major"
18+
19+
- package-ecosystem: github-actions
20+
directory: "/"
21+
schedule:
22+
interval: weekly
23+
time: "11:00"
24+
open-pull-requests-limit: 10
25+
groups:
26+
patch-deps-updates:
27+
update-types:
28+
- "patch"
29+
minor-deps-updates:
30+
update-types:
31+
- "minor"
32+
major-deps-updates:
33+
update-types:
34+
- "major"

.github/ionic-issue-bot.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ comment:
4242
4343
4444
For a guide on how to create a good reproduction, see our
45-
[Contributing Guide](https://github.com/ionic-team/stencil/blob/main/.github/CONTRIBUTING.md).
45+
[Contributing Guide](https://github.com/stenciljs/core/blob/main/.github/CONTRIBUTING.md).
4646
dryRun: false
4747

4848
noReply:

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,4 @@ $RECYCLE.BIN/
2626
Thumbs.db
2727
UserInterfaceState.xcuserstate
2828
.env
29+
coverage

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v22.14.0

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ Store is a lightweight shared state library by the [StencilJS](https://stenciljs
44

55
**Highlights:**
66

7-
- Lightweight
8-
- Zero dependencies
9-
- Simple API, like a reactive Map
10-
- Best performance
7+
- 🪶 Lightweight
8+
- Zero dependencies
9+
- 📦 Simple API, like a reactive Map
10+
- 🚀 Best performance
1111

1212
## Installation
1313

RELEASE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Development Releases (or "Dev Releases", "Dev Builds") are installable instances
1111

1212
Only members of the Stencil team may create dev builds of Stencil Store.
1313
To publish the package:
14-
1. Navigate to the [Stencil Store Dev Release GitHub Action](https://github.com/ionic-team/stencil-store/actions/workflows/release-dev.yml) in your browser.
14+
1. Navigate to the [Stencil Store Dev Release GitHub Action](https://github.com/stenciljs/store/actions/workflows/release-dev.yml) in your browser.
1515
2. Select the 'Run Workflow' dropdown on the right hand side of the page
1616
3. The dropdown will ask you for a branch name to publish from. Any branch may be used here.
1717
4. Select 'Run Workflow'

jest.config.js

-12
This file was deleted.

0 commit comments

Comments
 (0)