Skip to content

Commit

Permalink
Swag part of 5c0b1df not only in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosmintfan committed Sep 1, 2024
1 parent ac90fae commit 02f35e9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions modules/alloy/Gruntfile.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
const TsConfigPathsPlugin = require('tsconfig-paths-webpack-plugin');
const path = require('path');
const swag = require('@hugemce/swag');
const swag = require('@ephox/swag');

const create = (inFile, outFile) => {
const tsConfig = "tsconfig.json";
Expand Down Expand Up @@ -41,7 +41,7 @@ const create = (inFile, outFile) => {
},
{
test: /\.js$|\.ts$/,
use: ['@hugemce/swag/webpack/remapper']
use: ['@ephox/swag/webpack/remapper']
},
{
test: /\.ts$/,
Expand Down Expand Up @@ -130,7 +130,7 @@ module.exports = (grunt) => {
require('load-grunt-tasks')(grunt, {
requireResolution: true,
config: "../../package.json",
pattern: ['grunt-*', '@ephox/bedrock', '@hugemce/swag']
pattern: ['grunt-*', '@ephox/bedrock', '@ephox/swag']
});

grunt.registerTask('dev', ['webpack-dev-server']);
Expand Down
4 changes: 2 additions & 2 deletions modules/tinymce/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const FilesAsStrings = PluginString({
let zipUtils = require('./tools/modules/zip-helper');
let gruntUtils = require('./tools/modules/grunt-utils');
let gruntWebPack = require('./tools/modules/grunt-webpack');
let swag = require('@hugemce/swag');
let swag = require('@ephox/swag');
let path = require('path');

let plugins = [
Expand Down Expand Up @@ -916,7 +916,7 @@ module.exports = function (grunt) {
require('load-grunt-tasks')(grunt, {
requireResolution: true,
config: "../../package.json",
pattern: ['grunt-*', '@ephox/bedrock-server', '@hugemce/swag']
pattern: ['grunt-*', '@ephox/bedrock-server', '@ephox/swag']
});
grunt.loadTasks('tools/tasks');

Expand Down
2 changes: 1 addition & 1 deletion modules/tinymce/tools/modules/grunt-webpack.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ let create = (entries, tsConfig, outDir = '.') => {
},
{
test: /\.(js|mjs|ts)$/,
use: [ '@hugemce/swag/webpack/remapper' ]
use: [ '@ephox/swag/webpack/remapper' ]
},
{
test: /\.ts$/,
Expand Down

0 comments on commit 02f35e9

Please sign in to comment.