├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── .prettierrc.js ├── .swcrc ├── LICENSE ├── README.md ├── UPDATE.md ├── config ├── base.ts ├── build.ts └── index.ts ├── dist └── index.js ├── gulpfile.ts ├── jest.config.js ├── package.json ├── src ├── behavior.ts ├── data-path.ts ├── data-tracer.ts └── index.ts ├── test ├── env.d.ts ├── env.js ├── index.test.ts └── setup.ts ├── tsconfig.json └── types ├── behavior.d.ts ├── data-path.d.ts ├── data-tracer.d.ts └── index.d.ts /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | types 3 | dist 4 | swc_build 5 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/computed/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/computed/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/computed/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/computed/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.swcrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/computed/HEAD/.swcrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/computed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/computed/HEAD/README.md -------------------------------------------------------------------------------- /UPDATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/computed/HEAD/UPDATE.md -------------------------------------------------------------------------------- /config/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/computed/HEAD/config/base.ts -------------------------------------------------------------------------------- /config/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/computed/HEAD/config/build.ts -------------------------------------------------------------------------------- /config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/computed/HEAD/config/index.ts -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/computed/HEAD/dist/index.js -------------------------------------------------------------------------------- /gulpfile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/computed/HEAD/gulpfile.ts -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/computed/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/computed/HEAD/package.json -------------------------------------------------------------------------------- /src/behavior.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/computed/HEAD/src/behavior.ts -------------------------------------------------------------------------------- /src/data-path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/computed/HEAD/src/data-path.ts -------------------------------------------------------------------------------- /src/data-tracer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/computed/HEAD/src/data-tracer.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/computed/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/computed/HEAD/test/env.d.ts -------------------------------------------------------------------------------- /test/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/computed/HEAD/test/env.js -------------------------------------------------------------------------------- /test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/computed/HEAD/test/index.test.ts -------------------------------------------------------------------------------- /test/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/computed/HEAD/test/setup.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/computed/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/behavior.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/computed/HEAD/types/behavior.d.ts -------------------------------------------------------------------------------- /types/data-path.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/computed/HEAD/types/data-path.d.ts -------------------------------------------------------------------------------- /types/data-tracer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/computed/HEAD/types/data-tracer.d.ts -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wechat-miniprogram/computed/HEAD/types/index.d.ts --------------------------------------------------------------------------------