solhint-config-mud 2.2.18-8d0ce55e964e646a1c804c401df01c4deb866f30 → 2.2.18-9fa07c8489f1fbf167d0db01cd9aaa645a29c8e2

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.
@@ -0,0 +1,8 @@
1
+ declare const _default: {
2
+ rules: {
3
+ "mud/no-msg-sender": string;
4
+ "mud/system-file-name": string;
5
+ };
6
+ };
7
+
8
+ export { _default as default };
package/dist/index.js CHANGED
@@ -1,2 +1,10 @@
1
- "use strict";module.exports={rules:{"mud/no-msg-sender":"error","mud/system-file-name":"error"}};
1
+ "use strict";
2
+
3
+ // src/index.ts
4
+ module.exports = {
5
+ rules: {
6
+ "mud/no-msg-sender": "error",
7
+ "mud/system-file-name": "error"
8
+ }
9
+ };
2
10
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"sources":["../src/index.ts"],"sourcesContent":["export = {\n rules: {\n \"mud/no-msg-sender\": \"error\",\n \"mud/system-file-name\": \"error\",\n },\n};\n"],"mappings":"aAAA,eAAS,CACP,MAAO,CACL,oBAAqB,QACrB,uBAAwB,OAC1B,CACF","names":[]}
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["export = {\n rules: {\n \"mud/no-msg-sender\": \"error\",\n \"mud/system-file-name\": \"error\",\n },\n};\n"],"mappings":";;;AAAA,iBAAS;AAAA,EACP,OAAO;AAAA,IACL,qBAAqB;AAAA,IACrB,wBAAwB;AAAA,EAC1B;AACF;","names":[]}
package/dist/index.mjs ADDED
@@ -0,0 +1,29 @@
1
+ var __getOwnPropNames = Object.getOwnPropertyNames;
2
+ var __esm = (fn, res) => function __init() {
3
+ return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res;
4
+ };
5
+ var __commonJS = (cb, mod) => function __require() {
6
+ return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
7
+ };
8
+
9
+ // ../../node_modules/.pnpm/tsup@8.3.0_@microsoft+api-extractor@7.47.7_@types+node@20.17.16__jiti@1.21.6_postcss@8.5.1_ts_rihtmhm6tp3cagz6w7ivhbdyn4/node_modules/tsup/assets/esm_shims.js
10
+ var init_esm_shims = __esm({
11
+ "../../node_modules/.pnpm/tsup@8.3.0_@microsoft+api-extractor@7.47.7_@types+node@20.17.16__jiti@1.21.6_postcss@8.5.1_ts_rihtmhm6tp3cagz6w7ivhbdyn4/node_modules/tsup/assets/esm_shims.js"() {
12
+ "use strict";
13
+ }
14
+ });
15
+
16
+ // src/index.ts
17
+ var require_src = __commonJS({
18
+ "src/index.ts"(exports, module) {
19
+ init_esm_shims();
20
+ module.exports = {
21
+ rules: {
22
+ "mud/no-msg-sender": "error",
23
+ "mud/system-file-name": "error"
24
+ }
25
+ };
26
+ }
27
+ });
28
+ export default require_src();
29
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../node_modules/.pnpm/tsup@8.3.0_@microsoft+api-extractor@7.47.7_@types+node@20.17.16__jiti@1.21.6_postcss@8.5.1_ts_rihtmhm6tp3cagz6w7ivhbdyn4/node_modules/tsup/assets/esm_shims.js","../src/index.ts"],"sourcesContent":["// Shim globals in esm bundle\nimport { fileURLToPath } from 'url'\nimport path from 'path'\n\nconst getFilename = () => fileURLToPath(import.meta.url)\nconst getDirname = () => path.dirname(getFilename())\n\nexport const __dirname = /* @__PURE__ */ getDirname()\nexport const __filename = /* @__PURE__ */ getFilename()\n","export = {\n rules: {\n \"mud/no-msg-sender\": \"error\",\n \"mud/system-file-name\": \"error\",\n },\n};\n"],"mappings":";;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;;;ACAA;AAAA;AAAA;AAAA,qBAAS;AAAA,MACP,OAAO;AAAA,QACL,qBAAqB;AAAA,QACrB,wBAAwB;AAAA,MAC1B;AAAA,IACF;AAAA;AAAA;","names":[]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "solhint-config-mud",
3
- "version": "2.2.18-8d0ce55e964e646a1c804c401df01c4deb866f30",
3
+ "version": "2.2.18-9fa07c8489f1fbf167d0db01cd9aaa645a29c8e2",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/latticexyz/mud.git",
@@ -8,7 +8,16 @@
8
8
  },
9
9
  "license": "MIT",
10
10
  "exports": {
11
- ".": "./dist/index.js"
11
+ ".": {
12
+ "import": {
13
+ "import": "./dist/index.js",
14
+ "types": "./dist/index.d.ts"
15
+ },
16
+ "require": {
17
+ "require": "./dist/index.cjs",
18
+ "types": "./dist/index.d.cts"
19
+ }
20
+ }
12
21
  },
13
22
  "typesVersions": {
14
23
  "*": {