Skip to content

Commit 2a1a648

Browse files
authored
Revert "v4 (#181)" (#244)
This reverts commit 142471e.
1 parent 142471e commit 2a1a648

File tree

212 files changed

+14646
-23693
lines changed

Some content is hidden

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

212 files changed

+14646
-23693
lines changed

.DS_Store

6 KB
Binary file not shown.

.eslintrc.js

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
module.exports = {
2+
env: {
3+
es6: true,
4+
node: true,
5+
'jest/globals': true
6+
},
7+
extends: [
8+
'standard'
9+
],
10+
globals: {
11+
Atomics: 'readonly',
12+
SharedArrayBuffer: 'readonly'
13+
},
14+
parserOptions: {
15+
ecmaVersion: 2018
16+
},
17+
plugins: [
18+
'jest'
19+
],
20+
rules: {
21+
}
22+
}

.github/.dependabot.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33

44
version: 2
55
updates:
6-
- package-ecosystem: npm
7-
directory: /
6+
- package-ecosystem: "npm"
7+
directory: "/"
88
schedule:
9-
interval: monthly
9+
interval: "monthly"
1010
allow:
11-
- dependency-name: '@storyblok/region-helper'
11+
- dependency-name: "@storyblok/region-helper"
1212
reviewers:
13-
- storyblok/plugins-team
13+
- "storyblok/plugins-team"

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ assignees: ''
77

88
---
99

10+
1011
**Current behavior:**
1112
<!-- Describe how the bug manifests. -->
1213

.github/assets/breakpoints.png

-96.4 KB
Binary file not shown.

.github/assets/debug-vscode.png

-36.6 KB
Binary file not shown.

.github/assets/repo-banner.png

-11.3 KB
Binary file not shown.

.github/workflows/lint-pr.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

.github/workflows/lint.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

.github/workflows/pkg.pr.new.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
name: Publish Any Commit
22
on:
33
push:
4-
tags:
5-
- '!**'
64
branches:
75
- '**'
6+
tags:
7+
- '!**'
88

99
env:
10-
PNPM_CACHE_FOLDER: .pnpm-store
1110
HUSKY: 0 # Bypass husky commit hook for CI
1211

1312
permissions: {}
@@ -26,13 +25,13 @@ jobs:
2625
- name: Checkout code
2726
uses: actions/checkout@v4
2827

29-
- run: npm i -g --force corepack && corepack enable
28+
- run: corepack enable
3029
- uses: actions/setup-node@v4
3130
with:
3231
node-version: ${{ matrix.node-version }}
33-
cache: pnpm
32+
cache: yarn
3433
- name: Install dependencies
35-
run: pnpm install
34+
run: yarn install
3635
- name: Build
37-
run: pnpm build
38-
- run: pnpx pkg-pr-new publish --compact --pnpm
36+
run: yarn build
37+
- run: npx pkg-pr-new publish --compact

0 commit comments

Comments
 (0)