Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
22 changes: 22 additions & 0 deletions .agents/skills/mpx2web-workspace/babel.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"presets": [
[
"@babel/preset-env",
{
"modules": false,
"shippedProposals": true
}
]
],
"plugins": [
[
"@babel/transform-runtime",
{
"corejs": 3,
"version": "^7.10.4"
}
],
"@mpxjs/babel-plugin-inject-page-events"
],
"sourceType": "unambiguous"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
'use strict'

const campaignTracker = {
async create () {
return {
track () {},
destroy () {}
}
}
}

module.exports = campaignTracker
module.exports.default = campaignTracker
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
'use strict'

const productExposure = {
async create () {
return {
track () {},
destroy () {}
}
}
}

module.exports = productExposure
module.exports.default = productExposure
6 changes: 6 additions & 0 deletions .agents/skills/mpx2web-workspace/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { mpxConfig } from '@mpxjs/eslint-config'

export default mpxConfig({
mpx: true,
typescript: true
})
4 changes: 4 additions & 0 deletions .agents/skills/mpx2web-workspace/iteration-11/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
__pycache__/
*.py[cod]
*.log
*.pid
Binary file not shown.
Binary file not shown.
Loading
Loading