Skip to content

Commit

Permalink
chore: fix CI scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
hsablonniere committed Oct 23, 2024
1 parent bca4e10 commit 73c7c0a
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion scripts/publish-arch.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { cfg } from './config';
import * as cfg from './config.js';
import fs from 'fs-extra';
import { cloneGitProject, applyTemplates, commitAndPush } from './utils';
import { getArchiveFilepath, getShaFilepath } from './paths.js';
Expand Down
2 changes: 1 addition & 1 deletion scripts/publish-brew.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { cfg } from './config';
import * as cfg from './config.js';
import fs from 'fs-extra';
import { cloneGitProject, applyTemplates, commitAndPush } from './utils';
import { getShaFilepath, getArchiveFilepath } from './paths.js';
Expand Down
2 changes: 1 addition & 1 deletion scripts/publish-cellar.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import path from 'node:path';
import { cfg } from './config';
import * as cfg from './config.js';
import { getCellarClient } from './cellar-client.js';
import { getArchiveFilepath, getShaFilepath, getArchiveLatestFilepath, getBundleFilepath, getBundleFilename } from './paths.js';

Expand Down
2 changes: 1 addition & 1 deletion scripts/publish-dockerhub.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { cfg } from './config';
import * as cfg from './config.js';
import { cloneGitProject, applyTemplates, tagAndPush, commitAndPush, execSync } from './utils';
import childProcess from 'node:child_process';

Expand Down
2 changes: 1 addition & 1 deletion scripts/publish-exherbo.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { cfg } from './config';
import * as cfg from './config.js';
import del from 'del';
import { cloneGitProject, applyOneTemplate, commitAndPush } from './utils';

Expand Down
2 changes: 1 addition & 1 deletion scripts/publish-nexus.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { cfg } from './config';
import * as cfg from './config.js';
import { promises as fs } from 'node:fs';
import path from 'node:path';
import superagent from 'superagent';
Expand Down
2 changes: 1 addition & 1 deletion scripts/publish-npm.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { cfg } from './config';
import * as cfg from './config.js';
import { exec } from './utils';

export async function publishNpm () {
Expand Down

0 comments on commit 73c7c0a

Please sign in to comment.