Skip to content

Commit 984d2e4

Browse files
committed
chore: release
0 parents  commit 984d2e4

File tree

2,101 files changed

+164793
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,101 files changed

+164793
-0
lines changed

.env.example

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
VITE_API_HOST=
2+
VITE_APP_DEBUG=
3+
VITE_PUSHER_ENDPOINT=
4+
VITE_EDITOR_ENDPOINT=
5+
VITE_TYPESENSE_DOMAIN=
6+
VITE_IFRAMELY_KEY=
7+
VITE_STORIPRESS_DOMAIN=
8+
VITE_STRIPE_PUBLISHABLEKEY=
9+
VITE_FEATURES_ENDPOINT=
10+
11+
VITE_SENTRY_DSN=
12+
VITE_SENTRY_ENV=
13+
VITE_OPENREPLAY_PROJECT_ID=
14+
VITE_RUDDER_WRITE_KEY=
15+
VITE_RUDDER_PLANE_URL=
16+
VITE_UPOLLO_API_KEY=
17+
VITE_SEGMENT_WRITE_KEY=
18+
19+
VITE_IMAGE_PROXY=
20+
21+
SENTRY_AUTH_TOKEN=
22+
23+
VITE_TYPESENSE_KEY=
24+
VITE_TYPESENSE_HOST=
25+
26+
VITE_GPT=
27+
28+
VITE_PUSHER_KEY=
29+
VITE_AXIOM_TOKEN=
30+
31+
VITE_AXIOM_API_ERROR_DATASET=
32+
VITE_AXIOM_API_ERROR_TOKEN=

.env.test

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
VITE_ENABLE_MOCK_API=true
2+
VITE_FEATURES_ENDPOINT=

.github/reviewdog-tsc.sh

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
#!/bin/bash
2+
3+
cd "${GITHUB_WORKSPACE}/${INPUT_WORKDIR}" || exit 1
4+
5+
export REVIEWDOG_GITHUB_API_TOKEN="${INPUT_GITHUB_TOKEN}"
6+
7+
8+
echo ℹ️ vue-tsc version: "$("$(npm bin)"/vue-tsc --version)"
9+
10+
echo "::group::📝 Running vue-tsc with reviewdog 🐶 ..."
11+
12+
echo INPUT_TSC_FLAGS: ${INPUT_TSC_FLAGS}
13+
echo INPUT_REVIEWDOG_FLAGS: ${INPUT_REVIEWDOG_FLAGS}
14+
echo INPUT_REPORTER: ${INPUT_REPORTER}
15+
16+
# shellcheck disable=SC2086
17+
"$(npm bin)"/vue-tsc --noEmit ${INPUT_TSC_FLAGS} \
18+
| reviewdog -f=tsc \
19+
-name="${INPUT_TOOL_NAME}" \
20+
-reporter="${INPUT_REPORTER}" \
21+
-filter-mode="${INPUT_FILTER_MODE}" \
22+
-fail-on-error="${INPUT_FAIL_ON_ERROR}" \
23+
-level="${INPUT_LEVEL}" \
24+
${INPUT_REVIEWDOG_FLAGS}
25+
26+
reviewdog_rc=$?
27+
echo "::endgroup::"
28+
exit $reviewdog_rc

.github/workflows/release-please.yml

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
on:
2+
push:
3+
branches:
4+
- master
5+
name: release-please
6+
jobs:
7+
release-please:
8+
runs-on: ubuntu-22.04
9+
outputs:
10+
pr_number: ${{ steps.release.outputs.pr.number }}
11+
steps:
12+
- uses: google-github-actions/release-please-action@v4
13+
id: release
14+
with:
15+
release-type: node
16+
package-name: manager-next
17+
changelog-types: |
18+
[
19+
{"type":"feat","section":"Features","hidden":false},
20+
{"type":"fix","section":"Bug Fixes","hidden":false},
21+
{"type":"style","section":"Styles","hidden":false},
22+
{"type":"chore","section":"Miscellaneous","hidden":false},
23+
{"type":"refactor","section":"Refactors","hidden":false},
24+
{"type":"revert","section":"Reverts","hidden":false}
25+
]
26+
- name: Actions Ecosystem Remove Labels
27+
uses: actions-ecosystem/[email protected]
28+
if: ${{ steps.release.outputs.pr }}
29+
with:
30+
labels: release:clear
31+
number: ${{ steps.release.outputs.pr.number }}
32+
- uses: actions/checkout@v4
33+
- name: create release branches
34+
if: ${{ steps.release.outputs.release_created }}
35+
run: |
36+
git config user.name github-actions[bot]
37+
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
38+
git branch release/${{ steps.release.outputs.tag_name }}
39+
git push origin release/${{ steps.release.outputs.tag_name }}
40+
git reset --hard release/${{ steps.release.outputs.tag_name }}
41+
git switch -c staging
42+
git reset --hard release/${{ steps.release.outputs.tag_name }}
43+
git push -f origin staging
44+
git switch -c production
45+
git reset --hard release/${{ steps.release.outputs.tag_name }}
46+
git push -f origin production
47+
git switch master

.github/workflows/static-analyzer.yml

+65
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
name: Static Analyzer
2+
3+
on:
4+
pull_request:
5+
branches-ignore:
6+
- 'release-please-*'
7+
- 'renovate*'
8+
9+
jobs:
10+
static-analyzer:
11+
runs-on: ubuntu-22.04
12+
name: Static Analyzer
13+
env:
14+
NODE_OPTIONS: --max-old-space-size=6144
15+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
16+
steps:
17+
- uses: actions/checkout@v4
18+
with:
19+
token: ${{ secrets.PAT_TOKEN }}
20+
submodules: recursive
21+
- uses: actions/setup-node@v4
22+
with:
23+
node-version: '18'
24+
cache: yarn
25+
- run: yarn
26+
- uses: reviewdog/action-eslint@v1
27+
with:
28+
github_token: ${{ secrets.GITHUB_TOKEN }}
29+
eslint_flags: '{playwright,src,test}/**/*.{vue,ts,js,tsx,jsx}'
30+
node_options: --max-old-space-size=6144
31+
32+
- uses: reviewdog/action-setup@v1
33+
with:
34+
reviewdog_version: v0.14.1
35+
- run: ${GITHUB_WORKSPACE}/.github/reviewdog-tsc.sh
36+
shell: bash
37+
env:
38+
INPUT_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
39+
INPUT_WORKDIR: .
40+
INPUT_LEVEL: error
41+
INPUT_REPORTER: github-pr-review
42+
INPUT_FILTER_MODE: added
43+
INPUT_FAIL_ON_ERROR: 'false'
44+
INPUT_REVIEWDOG_FLAGS: ''
45+
INPUT_TOOL_NAME: vue-tsc
46+
INPUT_TSC_FLAGS: ''
47+
48+
- run: yarn typecheck
49+
continue-on-error: true # TODO: fix type errors
50+
51+
52+
# - name: Add Deepsource token
53+
# run: |
54+
# mkdir -p ~/.deepsource
55+
# cat <<EOD > ~/.deepsource/config.toml
56+
# ${{ secrets.DEEPSOURCE_CONFIG }}
57+
# EOD
58+
59+
# - name: Install Deepsource CLI
60+
# run: |
61+
# curl https://deepsource.io/cli | sh
62+
# - run: yarn reviewdog:deepsource
63+
# env:
64+
# DEEPSOURCE_DSN: ${{ secrets.DEEPSOURCE_DSN }}
65+
# REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: Unit Test Baseline
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
unit-test:
10+
runs-on: ubuntu-22.04
11+
name: Base Unit Test
12+
env:
13+
NODE_OPTIONS: --max-old-space-size=6144
14+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15+
steps:
16+
- uses: actions/checkout@v4
17+
with:
18+
token: ${{ secrets.PAT_TOKEN }}
19+
submodules: recursive
20+
fetch-depth: 0
21+
- uses: moonrepo/setup-toolchain@v0
22+
- uses: actions/setup-node@v4
23+
with:
24+
node-version: '18'
25+
cache: yarn
26+
- name: Cache Moonrepo
27+
uses: actions/cache@v4
28+
with:
29+
path: |
30+
.moon/cache/hashes
31+
.moon/cache/outputs
32+
key: cache-moon-${{ github.sha }}
33+
restore-keys: |
34+
cache-moon-
35+
- run: moon run :test-coverage
36+
- run: cp ./coverage/lcov.info ./coverage/base.info
37+
- uses: actions/cache/save@v4
38+
with:
39+
path: |
40+
./coverage/base.info
41+
key: base-coverage-${{ github.run_id }}

.github/workflows/unit-test.yml

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
name: Unit Test
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
unit-test:
8+
runs-on: ubuntu-22.04
9+
name: Unit Test
10+
env:
11+
NODE_OPTIONS: --max-old-space-size=6144
12+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
13+
steps:
14+
- uses: actions/checkout@v4
15+
with:
16+
token: ${{ secrets.PAT_TOKEN }}
17+
submodules: recursive
18+
ref: ${{ github.event.pull_request.head.sha }}
19+
fetch-depth: 0
20+
- uses: moonrepo/setup-toolchain@v0
21+
- uses: actions/setup-node@v4
22+
with:
23+
node-version: '18'
24+
cache: yarn
25+
- name: Cache Moonrepo
26+
uses: actions/cache@v4
27+
with:
28+
path: |
29+
.moon/cache/hashes
30+
.moon/cache/outputs
31+
key: cache-moon-${{ github.sha }}
32+
restore-keys: |
33+
cache-moon-
34+
- run: moon ci :test-coverage
35+
- uses: moonrepo/run-report-action@v1
36+
if: success() || failure()
37+
with:
38+
access-token: ${{ secrets.GITHUB_TOKEN }}
39+
- uses: actions/cache/restore@v4
40+
with:
41+
key: base-coverage-${{ github.run_id }}
42+
path: |
43+
./coverage/base.info
44+
restore-keys: |
45+
base-coverage-
46+
base-coverage
47+
- name: Create Todo Comments
48+
uses: gkampitakis/github-action-todo-commenter@v1
49+
with:
50+
github-token: ${{ secrets.GITHUB_TOKEN }}
51+
ignore-pattern: '.js$|.snap$'
52+
review-message: 'Please take a look :eyes:'
53+
# optional, default is "TODO:,FIXME:,BUG:"
54+
tags: 'TODO:,FIXME:,BUG:'
55+
- name: Generate Code Coverage report
56+
id: code-coverage
57+
uses: barecheck/code-coverage-action@v1
58+
with:
59+
github-token: ${{ secrets.GITHUB_TOKEN }}
60+
lcov-file: ./coverage/lcov.info
61+
base-lcov-file: ./coverage/base.info
62+
send-summary-comment: true
63+
show-annotations: warning

.gitignore

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
.DS_Store
2+
.vite-ssg-dist
3+
.vite-ssg-temp
4+
*.local
5+
dist
6+
dist-ssr
7+
node_modules
8+
.idea/
9+
*.log
10+
/core
11+
12+
### yarn ###
13+
# https://yarnpkg.com/getting-started/qa#which-files-should-be-gitignored
14+
15+
.yarn/*
16+
!.yarn/releases
17+
!.yarn/patches
18+
!.yarn/plugins
19+
!.yarn/sdks
20+
!.yarn/versions
21+
22+
# if you are NOT using Zero-installs, then:
23+
# comment the following lines
24+
# !.yarn/cache
25+
26+
# and uncomment the following lines
27+
.pnp.*
28+
29+
**/storybook-static
30+
**/coverage
31+
storageState.json
32+
stats.html
33+
/test-results/
34+
/playwright-report/
35+
/playwright/.cache/
36+
37+
# moon
38+
.moon/cache
39+
.moon/docker

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "article-templates/sources"]
2+
path = article-templates/sources
3+
url = [email protected]:storipress/Builder-Blocks.git

.moon/toolchain.yml

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# https://moonrepo.dev/docs/config/toolchain
2+
$schema: 'https://moonrepo.dev/schemas/toolchain.json'
3+
4+
# Extend and inherit an external configuration file. Must be a valid HTTPS URL or file system path.
5+
# extends: './shared/toolchain.yml'
6+
7+
# Configures Node.js within the toolchain.
8+
node:
9+
# The version to use. Must be a semantic version that includes major, minor, and patch.
10+
# We suggest using the latest active LTS version: https://nodejs.org/en/about/releases
11+
# version: '20.0.0'
12+
13+
# The package manager to use when managing dependencies.
14+
# Accepts "npm" (default), "pnpm", "yarn", or "bun".
15+
packageManager: yarn
16+
17+
# The version of the package manager (above) to use.
18+
yarn: {}
19+
20+
# Add `node.version` as a constraint in the root `package.json` `engines`.
21+
addEnginesConstraint: true
22+
23+
# Dedupe dependencies after the lockfile has changed.
24+
dedupeOnLockfileChange: true
25+
26+
# Version format to use when syncing dependencies within the project's `package.json`.
27+
# dependencyVersionFormat: 'workspace'
28+
29+
# Infer and automatically create moon tasks from `package.json` scripts, per project.
30+
# BEWARE: Tasks and scripts are not 1:1 in functionality, so please refer to the documentation.
31+
inferTasksFromScripts: false
32+
33+
# Support the "one version policy" by only declaring dependencies in the root `package.json`.
34+
# rootPackageOnly: true
35+
36+
# Sync a project's relationships as `dependencies` within the project's `package.json`.
37+
syncProjectWorkspaceDependencies: true
38+
39+
# Sync `node.version` to a 3rd-party version manager's config file.
40+
# Accepts "nodenv" (.node-version), "nvm" (.nvmrc), or none.
41+
# syncVersionManagerConfig: 'nvm'

.moon/workspace.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# https://moonrepo.dev/docs/config/workspace
2+
$schema: 'https://moonrepo.dev/schemas/workspace.json'
3+
4+
# Require a specific version of moon while running commands, otherwise fail.
5+
# versionConstraint: '>=1.0.0'
6+
7+
# Extend and inherit an external configuration file. Must be a valid HTTPS URL or file system path.
8+
# extends: './shared/workspace.yml'
9+
10+
# REQUIRED: A map of all projects found within the workspace, or a list or file system globs.
11+
# When using a map, each entry requires a unique project ID as the map key, and a file system
12+
# path to the project folder as the map value. File paths are relative from the workspace root,
13+
# and cannot reference projects located outside the workspace boundary.
14+
projects:
15+
- .
16+
- packages/*

.prettierignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
src/graphql-operations.ts
2+
src/layouts/README.md
3+
public/mockServiceWorker.js
4+
src/auto-imports.d.ts
5+
CHANGELOG.md
6+
.yarn/releases/**
7+
article-templates/playground/src/auto-imports.d.ts
8+
packages/core-component/src/auto-imports.d.ts

0 commit comments

Comments
 (0)