Skip to content

Commit

Permalink
Merge branch 'hotfix/deploy'
Browse files Browse the repository at this point in the history
* hotfix/deploy:
  NPM. Upgrade `chalk` package to major version
  BUGFIX. Get errors on `execa` package when executing the `npm run deploy` command
  NPM. Upgrade `execa` package to major version
  • Loading branch information
beatrizsmerino committed Jul 19, 2023
2 parents bea1f59 + 8955477 commit fcfdf8b
Show file tree
Hide file tree
Showing 3 changed files with 623 additions and 140 deletions.
8 changes: 4 additions & 4 deletions gh-pages-deploy.js → gh-pages-deploy.mjs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* eslint-disable no-console */
const execa = require('execa');
const emoji = require('node-emoji');
const chalk = require('chalk');
const fs = require('fs');
import { execa } from 'execa';
import * as emoji from 'node-emoji';
import chalk from 'chalk';
import * as fs from 'fs';

const iconArrows = emoji.get('fast_forward');
const iconRocket = emoji.get('rocket');
Expand Down
Loading

0 comments on commit fcfdf8b

Please sign in to comment.