Skip to content

Commit 2da40e2

Browse files
authored
feat: Support web experiment page view objects (#165)
1 parent f22bf7b commit 2da40e2

File tree

13 files changed

+1249
-284
lines changed

13 files changed

+1249
-284
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
2727

2828
- name: Setup Node
29-
uses: actions/setup-node@v2
29+
uses: actions/setup-node@v4
3030
with:
3131
node-version: ${{ matrix.node-version }}
3232

@@ -40,7 +40,7 @@ jobs:
4040
shell: bash
4141

4242
- name: Install
43-
run: yarn install --frozen-lockfile
43+
run: yarn install --frozen-lockfile --force
4444

4545
- name: Build
4646
run: npx lerna exec yarn --stream

packages/experiment-tag/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828
"dependencies": {
2929
"@amplitude/experiment-core": "^0.11.0",
3030
"@amplitude/experiment-js-client": "^1.15.5",
31-
"dom-mutator": "git+ssh://[email protected]:amplitude/dom-mutator#main"
31+
"dom-mutator": "git+ssh://[email protected]:amplitude/dom-mutator#main",
32+
"rollup-plugin-license": "^3.6.0"
3233
},
3334
"devDependencies": {
3435
"@rollup/plugin-terser": "^0.4.4",

packages/experiment-tag/rollup.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import babel from '@rollup/plugin-babel';
55
import commonjs from '@rollup/plugin-commonjs';
66
import json from '@rollup/plugin-json';
77
import resolve from '@rollup/plugin-node-resolve';
8-
import replace from '@rollup/plugin-replace';
98
import terser from '@rollup/plugin-terser';
109
import typescript from '@rollup/plugin-typescript';
1110
import analyze from 'rollup-plugin-analyzer';

0 commit comments

Comments
 (0)