Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ocavue/rino
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.44.3
Choose a base ref
...
head repository: ocavue/rino
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref

Commits on Jul 14, 2022

  1. Copy the full SHA
    733f3c3 View commit details

Commits on Jul 15, 2022

  1. Copy the full SHA
    5b6e884 View commit details
  2. Copy the full SHA
    04fd0a7 View commit details
  3. Copy the full SHA
    35cb895 View commit details
  4. Copy the full SHA
    cd34510 View commit details
  5. Copy the full SHA
    3ec2aac View commit details
  6. chore: remove debug log

    ocavue committed Jul 15, 2022
    Copy the full SHA
    a3f7019 View commit details
  7. Copy the full SHA
    1df4cd3 View commit details
  8. Copy the full SHA
    d99c297 View commit details

Commits on Jul 17, 2022

  1. Copy the full SHA
    d5d4a01 View commit details
  2. Copy the full SHA
    4c96eb9 View commit details

Commits on Jul 18, 2022

  1. Copy the full SHA
    51cd797 View commit details

Commits on Jul 19, 2022

  1. Copy the full SHA
    14b2201 View commit details

Commits on Jul 20, 2022

  1. Copy the full SHA
    bc5dd91 View commit details
  2. Copy the full SHA
    4a01a3f View commit details
  3. Copy the full SHA
    ad25e64 View commit details
  4. Copy the full SHA
    b9334e8 View commit details

Commits on Jul 21, 2022

  1. Copy the full SHA
    3d3b033 View commit details

Commits on Jul 22, 2022

  1. Copy the full SHA
    15dfc67 View commit details
  2. Copy the full SHA
    2bf00f2 View commit details
  3. Copy the full SHA
    c7ac15b View commit details
  4. Copy the full SHA
    e9ce348 View commit details
  5. Copy the full SHA
    9a67e69 View commit details
  6. Copy the full SHA
    f94b8d4 View commit details
  7. Copy the full SHA
    5f09827 View commit details

Commits on Jul 28, 2022

  1. Copy the full SHA
    267432f View commit details

Commits on Jul 29, 2022

  1. Copy the full SHA
    7948267 View commit details
  2. fix(editor): fix undo (#1110)

    ocavue authored Jul 29, 2022
    Copy the full SHA
    65884f4 View commit details
  3. Copy the full SHA
    7664ccc View commit details

Commits on Aug 4, 2022

  1. Copy the full SHA
    c542a18 View commit details
  2. Copy the full SHA
    13e4925 View commit details

Commits on Aug 5, 2022

  1. Copy the full SHA
    1eb536a View commit details
  2. Copy the full SHA
    18eecbe View commit details

Commits on Aug 8, 2022

  1. Copy the full SHA
    8d54599 View commit details

Commits on Aug 10, 2022

  1. Copy the full SHA
    8da3b42 View commit details

Commits on Aug 29, 2022

  1. Copy the full SHA
    e0bb5fe View commit details

Commits on Sep 5, 2022

  1. Copy the full SHA
    ea29c2d View commit details
  2. Copy the full SHA
    53985fc View commit details
  3. Copy the full SHA
    85c37f9 View commit details
  4. Copy the full SHA
    b5c1a0e View commit details

Commits on Sep 8, 2022

  1. Copy the full SHA
    3413ecb View commit details

Commits on Sep 9, 2022

  1. Copy the full SHA
    c74e52f View commit details
  2. Copy the full SHA
    af04652 View commit details
  3. Copy the full SHA
    6074dce View commit details

Commits on Sep 13, 2022

  1. Copy the full SHA
    c428a57 View commit details
  2. Copy the full SHA
    c6ac50a View commit details
  3. Copy the full SHA
    c0b6d75 View commit details
  4. Copy the full SHA
    695ab80 View commit details

Commits on Sep 16, 2022

  1. Copy the full SHA
    00c3701 View commit details

Commits on Sep 19, 2022

  1. Copy the full SHA
    5700fca View commit details
Showing with 9,420 additions and 8,320 deletions.
  1. +8 −82 .eslintrc.yaml
  2. +3 −3 .github/actions/dependencies/action.yml
  3. +5 −6 .github/dependabot.yml
  4. +2 −5 .github/workflows/dependency.yml
  5. +55 −22 .github/workflows/main.yml
  6. +0 −1 .gitignore
  7. +1 −1 .npmrc
  8. +5 −1 .prettierrc.yaml
  9. +0 −437 CHANGELOG.md
  10. +40 −0 CONTRIBUTING.md
  11. +4 −0 README.md
  12. +2 −2 api-extractor.base.json
  13. +2 −2 art/README.md
  14. +1 −1 assets/README
  15. +1 −1 codecov.yml
  16. +13 −43 package.json
  17. +5 −5 packages/cli/package.json
  18. +1 −1 packages/cli/src/commands/clean.mjs
  19. +7 −2 packages/cli/src/commands/test.mjs
  20. +1 −3 packages/cli/src/tsconfig.json
  21. +13 −12 packages/common/package.json
  22. +1 −3 packages/common/src/tsconfig.json
  23. +36 −0 packages/editor/CHANGELOG.md
  24. +9 −20 packages/editor/esbuild.mjs
  25. +77 −71 packages/editor/package.json
  26. +0 −7 packages/editor/src/components/Editor.tsx
  27. +1 −1 packages/editor/src/components/ErrorBoundary.tsx
  28. +6 −3 packages/editor/src/components/theme/base.ts
  29. +0 −45 packages/editor/src/components/theme/github.ts
  30. +6 −6 packages/editor/src/components/wysiwyg/CodeLanguageSelect.tsx
  31. +95 −0 packages/editor/src/components/wysiwyg/FindReplace.tsx
  32. +2 −0 packages/editor/src/components/wysiwyg/WysiwygEditor.tsx
  33. +6 −16 packages/editor/src/components/wysiwyg/wysiwyg-extension.ts
  34. +1 −1 packages/editor/src/extensions/codemirror/codemirror-language-menu.ts
  35. +4 −1 packages/editor/src/extensions/codemirror/codemirror-setup.ts
  36. +61 −81 packages/editor/src/extensions/inline/from-inline-markdown.spec.ts
  37. +32 −19 packages/editor/src/extensions/inline/from-inline-markdown.ts
  38. +1 −1 packages/editor/src/extensions/inline/index.ts
  39. +2 −8 packages/editor/src/extensions/inline/inline-deco-extension.ts
  40. +4 −4 packages/editor/src/extensions/inline/inline-mark-extensions.ts
  41. +26 −91 packages/editor/src/extensions/inline/inline-mark-helpers.ts
  42. +14 −22 packages/editor/src/extensions/inline/inline-mark-plugin.ts
  43. +4 −3 packages/editor/src/extensions/inline/inline-types.ts
  44. +1 −1 packages/editor/src/extensions/list/index.ts
  45. +0 −235 packages/editor/src/extensions/list/list-extension.ts
  46. +0 −510 packages/editor/src/extensions/list/list.spec.ts
  47. +78 −0 packages/editor/src/extensions/list/rino-list-extensions.ts
  48. +8 −8 packages/editor/src/extensions/table-components/TableCellButton.tsx
  49. +2 −2 packages/editor/src/extensions/table-components/TableMenu.tsx
  50. +8 −8 packages/editor/src/extensions/table-components/TableTooltip.tsx
  51. +12 −0 packages/editor/src/extensions/table-components/icons/MoreLineIcon.tsx
  52. +4 −12 packages/editor/src/extensions/table-components/table-helpers.ts
  53. +4 −4 packages/editor/src/extensions/table-components/use-table-menu.ts
  54. +17 −0 packages/editor/src/hooks/use-shortcut.ts
  55. +175 −0 packages/editor/src/steps/batch-mark-step.ts
  56. +41 −0 packages/editor/src/steps/replace-doc-step.ts
  57. +11 −1 packages/editor/src/transform/parser-type.ts
  58. +32 −2 packages/editor/src/transform/parser.ts
  59. +14 −3 packages/editor/src/transform/serializer.ts
  60. +1 −3 packages/editor/src/tsconfig.json
  61. +1 −3 packages/editor/test/tsconfig.json
  62. +1 −1 packages/editor/vite.config.js
  63. +19 −8 packages/electron-main/esbuild.mjs
  64. +8 −8 packages/electron-main/package.json
  65. +1 −1 packages/electron-main/src/ipc-main.ts
  66. +2 −0 packages/electron-main/src/logger.ts
  67. +1 −3 packages/electron-main/src/tsconfig.json
  68. +8 −11 packages/electron-main/src/updater.ts
  69. +5 −0 packages/electron-main/src/window.ts
  70. +19 −7 packages/electron-preload/esbuild.mjs
  71. +3 −3 packages/electron-preload/package.json
  72. +1 −3 packages/electron-preload/src/tsconfig.json
  73. +7 −7 packages/electron-renderer/package.json
  74. +1 −1 packages/electron-renderer/src/hooks/use-before-unload.ts
  75. +4 −2 packages/electron-renderer/src/hooks/use-workbench.ts
  76. +24 −26 packages/electron-renderer/src/index.html
  77. +1 −3 packages/electron-renderer/src/tsconfig.json
  78. +1 −1 packages/electron-renderer/vite.config.js
  79. +2 −2 packages/electron-types/package.json
  80. +48 −0 packages/electron/CHANGELOG.md
  81. +1 −1 packages/electron/notarize.cjs
  82. +13 −13 packages/electron/package.json
  83. +3 −4 packages/home/next.config.js
  84. +27 −26 packages/home/package.json
  85. +1 −3 packages/home/src/tsconfig.json
  86. +1 −3 packages/home/test/tsconfig.json
  87. +19 −25 packages/home/tsconfig.json
  88. +14 −14 packages/home/vercel.json
  89. +0 −21 packages/home2/package.json
  90. +0 −6 packages/home2/src/about.js
  91. +0 −9 packages/home2/src/add.js
  92. +0 −12 packages/home2/src/components/counter.jsx
  93. +0 −3 packages/home2/src/components/styles.css
  94. +0 −9 packages/home2/src/env.js
  95. +0 −6 packages/home2/src/home.js
  96. +0 −9 packages/home2/src/multiply.js
  97. +0 −87 packages/home2/src/pages/404.jsx
  98. +0 −38 packages/home2/src/pages/_app.jsx
  99. +0 −87 packages/home2/src/pages/_error.jsx
  100. +0 −22 packages/home2/src/pages/about.jsx
  101. +0 −19 packages/home2/src/pages/bar.jsx
  102. +0 −26 packages/home2/src/pages/env.jsx
  103. +0 −20 packages/home2/src/pages/foo.jsx
  104. +0 −22 packages/home2/src/pages/index.jsx
  105. +0 −9 packages/home2/src/share.js
  106. +0 −6 packages/home2/src/share2.js
  107. +0 −19 packages/home2/vite.config.js
  108. +16 −13 packages/playground/package.json
  109. +1 −1 packages/playground/src/components/App.tsx
  110. +10 −12 packages/playground/src/index.html
  111. +1 −3 packages/playground/src/tsconfig.json
  112. +27 −15 packages/playground/test/{5.styles.spec.ts → 5.visual.spec.ts}
  113. BIN ...est/__image_snapshots__/5-visual-spec-ts-test-5-visual-spec-ts-darwin-source-code-mode-1-snap.png
  114. BIN ...nd/test/__image_snapshots__/5-visual-spec-ts-test-5-visual-spec-ts-darwin-wysiwyg-mode-1-snap.png
  115. BIN ...test/__image_snapshots__/5-visual-spec-ts-test-5-visual-spec-ts-linux-source-code-mode-1-snap.png
  116. BIN ...und/test/__image_snapshots__/5-visual-spec-ts-test-5-visual-spec-ts-linux-wysiwyg-mode-1-snap.png
  117. +3 −1 packages/playground/test/__snapshots__/3.base.spec.ts.snap
  118. +116 −0 packages/playground/test/setup-image-snapshot.ts
  119. +3 −2 packages/playground/test/setup-playwright-coverage.ts
  120. +2 −6 packages/playground/test/tsconfig.json
  121. +3 −22 packages/playground/test/utils.ts
  122. +1 −1 packages/playground/vite.config.js
  123. +126 −181 packages/rig/dependency-licenses.md
  124. +1 −1 packages/rig/package.json
  125. +0 −2 packages/visite/.npmignore
  126. +0 −24 packages/visite/app/entry-client.jsx
  127. +0 −21 packages/visite/app/entry-server.jsx
  128. +0 −3 packages/visite/app/load-app.mjs
  129. +0 −62 packages/visite/app/routes.jsx
  130. +0 −10 packages/visite/bin/visite.mjs
  131. +0 −36 packages/visite/esbuild.mjs
  132. +0 −1 packages/visite/head.d.ts
  133. +0 −1 packages/visite/head.js
  134. +0 −34 packages/visite/package.json
  135. +0 −51 packages/visite/src/cli/cli.ts
  136. 0 packages/visite/src/cli/constants.ts
  137. +0 −11 packages/visite/src/cli/disable-log-plugin.ts
  138. +0 −15 packages/visite/src/cli/html.ts
  139. +0 −32 packages/visite/src/cli/inject-html.ts
  140. +0 −49 packages/visite/src/cli/plugin.ts
  141. +0 −24 packages/visite/src/cli/pre-render.ts
  142. +0 −129 packages/visite/src/cli/server.ts
  143. +0 −5 packages/visite/src/cli/types.ts
  144. +0 −38 packages/visite/src/cli/utils.ts
  145. +0 −3 packages/visite/src/lib/head.ts
  146. +0 −11 packages/visite/src/tsconfig.json
  147. +7,898 −5,059 pnpm-lock.yaml
  148. +1 −1 pnpm-workspace.yaml
  149. +3 −1 scripts/generate-lighthouserc.js
  150. +4 −4 tsconfig.base.json
  151. +0 −3 tsconfig.json
  152. +3 −1 turbo.json
90 changes: 8 additions & 82 deletions .eslintrc.yaml
Original file line number Diff line number Diff line change
@@ -1,89 +1,15 @@
root: true
parser: "@typescript-eslint/parser"
parserOptions:
parser: "@typescript-eslint/parser"
ecmaVersion: 2018 # Allows for the parsing of modern ECMAScript features
project:
- "./tsconfig.json"
- "./tsconfig.eslint.json"
ecmaFeatures:
jsx: true
extraFileExtensions:
- .mjs
extends:
# https://github.com/typescript-eslint/typescript-eslint/tree/v4.1.1/packages/eslint-plugin#recommended-configs
- "eslint:recommended" # the set of rules which are recommended for all projects by the ESLint Team
- "plugin:@typescript-eslint/recommended" # recommended rules for typescript
# - "plugin:@typescript-eslint/recommended-requiring-type-checking" # provide lint rules with access to type information

# https://www.npmjs.com/package/eslint-plugin-react
- "plugin:react/recommended"

# https://www.npmjs.com/package/eslint-plugin-react-hooks
- "plugin:react-hooks/recommended"

# runs Prettier as an ESLint rule
# https://github.com/prettier/eslint-plugin-prettier
- "plugin:prettier/recommended"

plugins:
- "simple-import-sort"
extends: ["@ocavue/eslint-config-react"]
settings:
react:
version: "18"
env:
browser: true
node: true
rules:
"no-useless-escape": "off"
"no-console": ["error", { allow: ["warn", "error", "log", "assert"] }]

"react/prop-types": [1, { skipUndeclared: true }]
"react/no-unescaped-entities": "off"
no-useless-escape: off
no-console: [error, { allow: [warn, error, log, assert] }]

"@typescript-eslint/no-unused-vars": [error, { args: "none" }]
"@typescript-eslint/explicit-module-boundary-types": off
"@typescript-eslint/no-empty-function": off
"@typescript-eslint/no-explicit-any": off

"react-hooks/exhaustive-deps":
- "warn"
react-hooks/exhaustive-deps:
- warn
- enableDangerousAutofixThisMayCauseInfiniteLoops: true

# turn on the rules provided by `eslint-plugin-prettier` as `warn` instead of `error`
"prettier/prettier": warn

# use `simple-import-sort` to sort import
"sort-imports": "off"
"simple-import-sort/imports":
- "warn"
- groups: [
# Side effect imports.
["^\\u0000"],
# Packages.
# Things that start with a letter (or digit or underscore), or `@` followed by a letter but not `@rino.app`.
["^@(?!\\W|rino\\.app)","^\\w"],
# `@rino.app` packages.
["^@rino\\.app"],
# Absolute imports and other imports such as Vue-style `@/foo`.
# Anything that does not start with a dot.
["^[^.]"],
# Absolute imports based on tsconfig.json's `baseUrl`.
# Check https://github.com/lydell/eslint-plugin-simple-import-sort/issues/31 for more information.
# Anything that start with `src/`, `config/` or `tests/`
["^(?:src|config|tests)\/"],
# Relative imports.
# Anything that starts with a dot.
["^\\."],
]
overrides:
- files: ["*.js", "*.cjs"]
rules:
"@typescript-eslint/no-var-requires": off
ignorePatterns:
- node_modules/
- .next/
- .dist/
- dist/
- out/

"@typescript-eslint/no-unused-vars": off
"@typescript-eslint/no-empty-function": off
"@typescript-eslint/no-empty-method": off
6 changes: 3 additions & 3 deletions .github/actions/dependencies/action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: "Install dependencies"
description: "Install dependencies"
name: Install dependencies
description: Install dependencies

runs:
using: composite
@@ -10,7 +10,7 @@ runs:
node-version: 16

- name: Install pnpm
uses: pnpm/action-setup@v2.2.2
uses: pnpm/action-setup@v2.2.4
with:
run_install: false

11 changes: 5 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -2,9 +2,8 @@

version: 2
updates:

# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
# Maintain dependencies for GitHub Actions
- package-ecosystem: github-actions
directory: /
schedule:
interval: monthly
7 changes: 2 additions & 5 deletions .github/workflows/dependency.yml
Original file line number Diff line number Diff line change
@@ -24,14 +24,11 @@ jobs:
corepack enable
pnpm --version
- name: Run pnpm-deduplicate
- name: Run pnpm dedupe
run: |
if $(git log -1 --pretty=format:'%an' | egrep -q 'renovate'); then
echo "deduplicate lockfile"
npm install -g pnpm-deduplicate
pnpm-deduplicate --version
pnpm-deduplicate --list
pnpm-deduplicate
pnpm dedupe
else
echo "Skipping lockfile deduplication"
fi
77 changes: 55 additions & 22 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -51,8 +51,7 @@ jobs:
runs-on: macos-latest
concurrency: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.electron_build_target }}
needs:
- test
- draft_release
- create_github_release
strategy:
matrix:
electron_build_target:
@@ -96,11 +95,32 @@ jobs:
export NODE_OPTIONS="--max-old-space-size=7680"
pnpm test:coverage
- name: Commit changed files
if: ${{ github.ref_name != 'master' && always() }}
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add .
git commit -m "chore: upload changed files during CI" || true
- name: Run visual tests
if: ${{ github.ref_name != 'master' && always() }}
run: |
cd packages/playground
pnpm test:vitest:visual
- name: Push changed files
if: ${{ github.ref_name != 'master' && always() }}
run: |
git add .
git commit -m "chore: upload changed files during CI" || true
git push || true
- name: Upload coverage information to codecov
uses: codecov/codecov-action@v3
with:
file: ./coverage/coverage-final.json
fail_ci_if_error: true # Specify if CI pipeline should fail when Codecov runs into errors during upload. Defaults to false
fail_ci_if_error: false # Specify if CI pipeline should fail when Codecov runs into errors during upload. Defaults to false

lint:
runs-on: ubuntu-latest
@@ -148,8 +168,8 @@ jobs:
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }}
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID_HOME }}
alias-domains: rino-home-${{ steps.step_branch.outputs.branch }}.ocavue.vercel.app
vercel-args: "--meta TYPE=PREVIEW"
working-directory: "./packages/home/dist/"
vercel-args: --meta TYPE=PREVIEW
working-directory: ./packages/home/dist/

- id: step_vercel_playground
name: Deploy @rino.app/playground to Vercel
@@ -163,8 +183,8 @@ jobs:
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }}
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID_EDITOR }}
alias-domains: rino-editor-${{ steps.step_branch.outputs.branch }}.ocavue.vercel.app
vercel-args: "--meta TYPE=PREVIEW"
working-directory: "./packages/playground/dist/"
vercel-args: --meta TYPE=PREVIEW
working-directory: ./packages/playground/dist/

- id: step_find_pr
uses: jwalton/gh-find-current-pr@v1
@@ -199,9 +219,9 @@ jobs:
lhci autorun --config .lighthouserc.home.json
if: steps.step_vercel_home.outcome == 'success'

draft_release:
create_github_release:
runs-on: ubuntu-latest
concurrency: global_concurrency_draft_release
concurrency: global_concurrency_release
needs:
- test
steps:
@@ -213,18 +233,30 @@ jobs:
echo "Current app version is $RINO_APP_VERSION"
echo "RINO_APP_VERSION=$RINO_APP_VERSION" >> $GITHUB_ENV
- name: Create draft GitHub release
uses: softprops/action-gh-release@v1
if: ${{ github.ref == 'refs/heads/master' || github.ref == 'refs/heads/changeset-release/master' }}
with:
draft: true
prerelease: false
name: "${{ env.RINO_APP_VERSION }}"
tag_name: "${{ env.RINO_APP_VERSION }}"
append_body: false
- name: Prepare GitHub release note
run: |
echo "$RINO_RELEASE_NOTE" > /tmp/rino-release-notes.md
env:
RINO_RELEASE_NOTE: |
This is a release for the desktop app.
Please refer to [CHANGELOG.md](https://github.com/ocavue/rino/blob/${{ env.RINO_APP_VERSION }}/packages/electron/CHANGELOG.md) for details.
- name: Print GitHub release note
run: |
cat /tmp/rino-release-notes.md
- name: Create GitHub release
if: ${{ github.ref == 'refs/heads/changeset-release/master' || github.ref == 'refs/heads/master' }}
# Create a draft release if not exists
run: |
gh release view "${RINO_APP_VERSION}" || gh release create "${RINO_APP_VERSION}" --title "${RINO_APP_VERSION}" --draft --notes-file /tmp/rino-release-notes.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

release:
runs-on: ubuntu-latest
concurrency: global_concurrency_release
needs:
- build_website
- build_package
@@ -257,6 +289,7 @@ jobs:

deploy: # Production deployment
runs-on: ubuntu-latest
concurrency: global_concurrency_release
needs:
# make sure that `deploy` only depends on `release` because we don't want `deploy` to skip if `release` succeeded.
- release
@@ -286,8 +319,8 @@ jobs:
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }}
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID_HOME }}
alias-domains: rino-home-master.ocavue.vercel.app
vercel-args: "--prod --meta TYPE=PRODUCTION"
working-directory: "./packages/home/dist/"
vercel-args: --prod --meta TYPE=PRODUCTION
working-directory: ./packages/home/dist/

- id: step_vercel_playground
name: Deploy @rino.app/playground to Vercel
@@ -300,5 +333,5 @@ jobs:
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }}
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID_EDITOR }}
alias-domains: rino-editor-master.ocavue.vercel.app
vercel-args: "--prod --meta TYPE=PRODUCTION"
working-directory: "./packages/playground/dist/"
vercel-args: --prod --meta TYPE=PRODUCTION
working-directory: ./packages/playground/dist/
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -6,7 +6,6 @@ packages/*/public/share
nohup.out
.venv
*.tsbuildinfo
__img_snapshots__
.turbo
temp

2 changes: 1 addition & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
strict-peer-dependencies=false
strict-peer-dependencies=false
6 changes: 5 additions & 1 deletion .prettierrc.yaml
Original file line number Diff line number Diff line change
@@ -2,5 +2,9 @@
# https://prettier.io/docs/en/options.html
semi: false
tabWidth: 4
trailingComma: "all"
trailingComma: all
printWidth: 140
overrides:
- files: ["*.yaml", "*.yml"]
options:
tabWidth: 2
Loading