Skip to content

Commit

Permalink
Merge branch 'release/2.2.13' into craft-webpack
Browse files Browse the repository at this point in the history
  • Loading branch information
khalwat committed Jul 19, 2020
2 parents c1b83f4 + ceba11d commit fa10c16
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# nystudio107/craft Change Log

## 2.2.13 - 2020.07.18
### Changed
* Disable the ForkTS plugins for now

## 2.2.12 - 2020.07.18
### Added
* Added TypeScript support
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "craftcms/craft",
"description": "nystudio107 Craft 3.4 CMS scaffolding project",
"version": "2.2.12",
"version": "2.2.13",
"keywords": [
"craft",
"cms",
Expand Down
4 changes: 4 additions & 0 deletions docker-config/webpack-dev-craft/webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@ const merge = require('webpack-merge');

// webpack plugins
const CopyWebpackPlugin = require('copy-webpack-plugin');
/* -- Does not yet work with Vue 3
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
const ForkTsCheckerNotifierWebpackPlugin = require('fork-ts-checker-notifier-webpack-plugin');
*/
const ManifestPlugin = require('webpack-manifest-plugin');
const { VueLoaderPlugin } = require('vue-loader');
const WebpackNotifierPlugin = require('webpack-notifier');
Expand Down Expand Up @@ -150,6 +152,7 @@ const baseConfig = {
plugins: [
new WebpackNotifierPlugin({title: 'Webpack', excludeWarnings: true, alwaysNotify: true}),
new VueLoaderPlugin(),
/* -- Does not yet work with Vue 3
new ForkTsCheckerWebpackPlugin({
typescript: {
configFile: '../../tsconfig.json',
Expand All @@ -163,6 +166,7 @@ const baseConfig = {
excludeWarnings: true,
alwaysNotify: false,
}),
*/
]
};

Expand Down

0 comments on commit fa10c16

Please sign in to comment.