@processmaker/modeler 1.63.1 → 1.63.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5,7 +5,6 @@ import mockProcesses from './mockProcesses.json';
5
5
  import mockDashboards from './mockDashboards.json';
6
6
  import mockSignals from './mockSignals.json';
7
7
  import mockProcessSvg from './mockProcessSvg';
8
- import { faker } from '@faker-js/faker';
9
8
 
10
9
  axios.defaults.baseURL = 'https://bpm4.local.processmaker.com/api/1.0/';
11
10
  axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
@@ -62,7 +61,7 @@ window.ProcessMaker = {
62
61
  },
63
62
  user: {
64
63
  id: 'standalone',
65
- fullName: faker.person.fullName(),
64
+ fullName: 'Joe Doe',
66
65
  avatar: null,
67
66
  },
68
67
  };
package/vue.config.js CHANGED
@@ -57,6 +57,11 @@ module.exports = {
57
57
  'bpmn-moddle',
58
58
  );
59
59
  }
60
+ // when running in development mode (npm run dev and cypress)
61
+ if (process.env.NODE_ENV === 'development') {
62
+ // reduce the chunk-vendors size
63
+ externals.push('@processmaker/screen-builder/dist/vue-form-builder');
64
+ }
60
65
  return externals;
61
66
  })(),
62
67
  plugins: (() => {