Skip to content

Commit

Permalink
Merge branch 'release/3.1.71' into v3
Browse files Browse the repository at this point in the history
  • Loading branch information
khalwat committed Apr 10, 2022
2 parents 204d129 + c9f7420 commit b96354b
Show file tree
Hide file tree
Showing 65 changed files with 5,733 additions and 6,981 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Retour Changelog

## 3.1.71 - 2022.04.09
### Changed
* No longer trim `/` from URLs that are presented in the Retour Dashboard ([#227](https://github.com/nystudio107/craft-retour/issues/227))

## 3.1.70 - 2022.01.17

### Fixed
Expand Down
2 changes: 2 additions & 0 deletions buildchain/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
ARG TAG=16-alpine
FROM nystudio107/node-dev-base:$TAG

USER node

WORKDIR /app/buildchain/

CMD ["run build"]
Expand Down
10,208 changes: 4,453 additions & 5,755 deletions buildchain/package-lock.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions buildchain/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
"vite-plugin-eslint": "^1.3.0",
"vite-plugin-compression": "^0.4.0",
"vite-plugin-externals": "^0.3.2",
"vite-plugin-manifest-sri": "^0.1.0",
"vite-plugin-restart": "0.0.2",
"vite-plugin-vue2": "^1.9.0"
},
Expand Down
9 changes: 6 additions & 3 deletions buildchain/vite.config.js → buildchain/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
import {defineConfig} from 'vite';
import {createVuePlugin} from 'vite-plugin-vue2'
import ViteRestart from 'vite-plugin-restart';
import {viteExternalsPlugin} from 'vite-plugin-externals'
import viteCompression from 'vite-plugin-compression';
import manifestSRI from 'vite-plugin-manifest-sri';
import {visualizer} from 'rollup-plugin-visualizer';
import eslintPlugin from 'vite-plugin-eslint';
import {nodeResolve} from '@rollup/plugin-node-resolve';
import path from 'path';
import * as path from 'path';

// https://vitejs.dev/config/
export default ({command}) => ({
export default defineConfig(({command}) => ({
base: command === 'serve' ? '' : '/dist/',
build: {
emptyOutDir: true,
Expand Down Expand Up @@ -45,6 +47,7 @@ export default ({command}) => ({
viteCompression({
filter: /\.(js|mjs|json|css|map)$/i
}),
manifestSRI(),
visualizer({
filename: '../src/web/assets/dist/stats.html',
template: 'treemap',
Expand All @@ -71,4 +74,4 @@ export default ({command}) => ({
port: 3001,
strictPort: true,
}
});
}));
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "nystudio107/craft-retour",
"description": "Retour allows you to intelligently redirect legacy URLs, so that you don't lose SEO value when rebuilding & restructuring a website",
"type": "craft-plugin",
"version": "3.1.70",
"version": "3.1.71",
"keywords": [
"craftcms",
"craft-plugin",
Expand Down
2 changes: 2 additions & 0 deletions docs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
ARG TAG=14-alpine
FROM node:$TAG

USER node

WORKDIR /app/

CMD ["run build"]
Expand Down
661 changes: 341 additions & 320 deletions docs/package-lock.json

Large diffs are not rendered by default.

2 changes: 0 additions & 2 deletions src/web/assets/dist/assets/VuetableFilterBar.fb1f9fb1.js

This file was deleted.

Binary file not shown.

This file was deleted.

Binary file not shown.
Loading

0 comments on commit b96354b

Please sign in to comment.