Skip to content
This repository has been archived by the owner on Apr 18, 2024. It is now read-only.

Commit

Permalink
chore: upgrade storyblok package
Browse files Browse the repository at this point in the history
  • Loading branch information
lsliwaradioluz committed Dec 12, 2023
1 parent ad0edd1 commit 6897b19
Show file tree
Hide file tree
Showing 7 changed files with 1,359 additions and 12 deletions.
8 changes: 8 additions & 0 deletions .changeset/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Changesets

Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
with multi-package repos, or single-package repos to help you version and publish your code. You can
find the full documentation for it [in our repository](https://github.com/changesets/changesets)

We have a quick list of common questions to get you started engaging with this project in
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)
10 changes: 10 additions & 0 deletions .changeset/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"$schema": "https://unpkg.com/@changesets/config@3.0.0/schema.json",
"commit": false,
"fixed": [],
"linked": [],
"access": "public",
"baseBranch": "master",
"updateInternalDependencies": "patch",
"ignore": []
}
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @vuestorefront/integrations-team
15 changes: 15 additions & 0 deletions .github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: VSF Continuous Delivery

on:
workflow_dispatch:
push:
branches:
- main

jobs:
release-packages:
name: "Release NPM Packages"
uses: vuestorefront/integrations-github-workflows/.github/workflows/continuous-delivery.yml@main
secrets: inherit
with:
enterprise: false
28 changes: 28 additions & 0 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: VSF Continuous Integration

on:
pull_request:
types: ['opened', 'edited', 'reopened', 'synchronize']

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
continous-integration:
name: 'Continuous Integration'
uses: vuestorefront/integrations-github-workflows/.github/workflows/continuous-integration.yml@main
secrets: inherit
with:
enterprise: false

sonarcloud:
name: 'SonarCloud API Client'
needs: [continous-integration]
uses: vuestorefront/integrations-github-workflows/.github/workflows/sonarcloud.yml@main
secrets:
SONARCLOUD_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }}
with:
project_key: 'vuestorefront_storyblok'
package_name: 'storyblok'
exclusions: '*.config.js,src/index.ts,src/api-extractor-data.ts,**/types/**'
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
"dev": "rollup -c -w",
"test": "jest --passWithNoTests",
"lint": "eslint --ext .js,.ts --ignore-path .eslintignore .",
"prepublish": "yarn build"
"prepublish": "yarn build",
"changesets:version": "yarn changeset version && YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn install",
"changesets:publish": "yarn build && yarn changeset publish"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --ext .js,.ts --ignore-path .eslintignore ."
Expand All @@ -32,6 +34,8 @@
"tslib": "^2.3.1"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@jest/globals": "^27.2.5",
Expand Down
Loading

0 comments on commit 6897b19

Please sign in to comment.