Skip to content

Commit

Permalink
rename folder agent => agents
Browse files Browse the repository at this point in the history
  • Loading branch information
arturcic committed Mar 13, 2024
1 parent b01c737 commit 7ae9eb4
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: CI
on:
push:
branches:
- main
- refactoring

pull_request:
branches:
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/core/ioc.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Container } from 'inversify'
import { IVersionManager, VersionManager } from './versionManager'
import { TYPES, IBuildAgent } from './models'
import { BuildAgent } from '../agent/mock/build-agent'
import { BuildAgent } from '../agents/mock/build-agent'

const container = new Container()

Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function getConfig(mode, agent, entry) {
plugins: [
new webpack.NormalModuleReplacementPlugin(
/agent\/mock\/build-agent/,
`../agent/${agent}/build-agent`
`../agents/${agent}/build-agent`
),
new ReplaceInFileWebpackPlugin([{
dir: `dist/${agent}`,
Expand Down

0 comments on commit 7ae9eb4

Please sign in to comment.