Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ runs:
steps:
- uses: pnpm/action-setup@v4
- name: Setup node to enable caching
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20.11
node-version: 22.12
cache: 'pnpm'
cache-dependency-path: './pnpm-lock.yaml'
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup pnpm and install deps
uses: ./.github/actions/setup
- name: Run linter
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@
"@tailor-cms/tce-template": "bin/index.cjs"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@playwright/test": "1.41.1",
"@changesets/cli": "^2.27.11",
"@playwright/test": "1.49.1",
"@tailor-cms/eslint-config": "0.0.2",
"@tailor-cms/tce-boot": "0.6.5",
"@tailor-cms/tce-display-runtime": "0.6.0",
"@tailor-cms/tce-boot": "0.6.29",
"@tailor-cms/tce-display-runtime": "0.6.7",
"@types/node": "^20.5.7",
"concurrently": "^8.2.2",
"prettier": "3.1.1",
Expand Down
12 changes: 12 additions & 0 deletions packages/display/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @tailor-cms/ce-embed-display

## 0.0.8

### Patch Changes

- Remove prefix from element type.

## 0.0.7

### Patch Changes

- Remove prefix from element type.

## 0.0.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/display/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Tailor CMS embed element end-user component",
"author": "Studion <info@gostudion.com> (https://github.com/tailor-cms)",
"type": "module",
"version": "0.0.6",
"version": "0.0.8",
"exports": {
".": {
"import": "./dist/index.js",
Expand Down
12 changes: 12 additions & 0 deletions packages/edit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @tailor-cms/ce-embed-edit

## 0.0.8

### Patch Changes

- Remove prefix from element type.

## 0.0.7

### Patch Changes

- Remove prefix from element type.

## 0.0.6

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/edit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Tailor CMS embed element authoring component",
"author": "Studion <info@gostudion.com> (https://github.com/tailor-cms)",
"type": "module",
"version": "0.0.6",
"version": "0.0.8",
"exports": {
".": {
"import": "./dist/index.js",
Expand All @@ -21,6 +21,7 @@
"lint:fix": "pnpm lint --fix"
},
"peerDependencies": {
"@tailor-cms/core-components": "^1.0.26",
"vue": "^3.3.4"
},
"devDependencies": {
Expand All @@ -34,7 +35,6 @@
"vue-tsc": "^1.8.5"
},
"dependencies": {
"@tailor-cms/core-components": "^1.0.12",
"lodash": "^4.17.21",
"validator": "^13.12.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/edit/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default defineConfig({
rollupOptions: {
// make sure to externalize deps that shouldn't be bundled
// into your library
external: ['vue'],
external: ['@tailor-cms/core-components', 'vue'],
output: {
intro: 'import "./style.css";',
// Provide global variables to use in the UMD build
Expand Down
12 changes: 12 additions & 0 deletions packages/manifest/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @tailor-cms/ce-embed-manifest

## 0.0.8

### Patch Changes

- Remove prefix from element type.

## 0.0.7

### Patch Changes

- Remove prefix from element type.

## 0.0.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/manifest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Tailor CMS embed element manifest",
"author": "Studion <info@gostudion.com> (https://github.com/tailor-cms)",
"type": "module",
"version": "0.0.6",
"version": "0.0.8",
"exports": {
".": {
"import": "./dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/manifest/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import type {
} from './interfaces';

// Element unique id within the target system (e.g. Tailor)
export const type = 'CE_EMBED';
export const type = 'EMBED';

// Display name (e.g. shown to the author)
export const name = 'Embed';
Expand Down
12 changes: 12 additions & 0 deletions packages/server/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @tailor-cms/ce-embed-server

## 0.0.8

### Patch Changes

- Remove prefix from element type.

## 0.0.7

### Patch Changes

- Remove prefix from element type.

## 0.0.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Tailor CMS embed element server component",
"author": "Studion <info@gostudion.com> (https://github.com/tailor-cms)",
"type": "module",
"version": "0.0.6",
"version": "0.0.8",
"exports": {
".": {
"import": "./dist/index.js",
Expand Down
676 changes: 406 additions & 270 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

Loading