macro-parameters 0.0.2 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "macro-parameters",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "description": "Provide unified macro parameter retrieval",
5
- "main": "src/main.ts",
5
+ "main": "index.js",
6
6
  "scripts": {
7
- "test": "rollup --config rollup.config.ts --configPlugin typescript2"
7
+ "build": "rollup --config rollup.config.ts --configPlugin typescript2"
8
8
  },
9
9
  "author": "caiyuanjia",
10
10
  "license": "ISC",
package/rollup.config.ts CHANGED
@@ -3,7 +3,7 @@ import typescript2 from 'rollup-plugin-typescript2';
3
3
  export default {
4
4
  input: 'src/main.ts',
5
5
  output: {
6
- file: 'bundle.js',
6
+ file: 'index.js',
7
7
  format: 'es',
8
8
  name: 'AdMacro'
9
9
  },
File without changes