newtil-css 0.2.48 → 0.2.50

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/dist/bundle.js ADDED
@@ -0,0 +1,3 @@
1
+ var undefined$1 = undefined;
2
+
3
+ export { undefined$1 as default };
@@ -1,4 +1,6 @@
1
1
  /**
2
2
  * Initializes the layout functionality, enabling resizing of the aside element.
3
3
  */
4
- export default function layout(): void;
4
+ declare function layout(): void;
5
+
6
+ export default layout;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "newtil-css",
3
- "version": "0.2.48",
3
+ "version": "0.2.50",
4
4
  "description": "Utility based CSS",
5
5
  "main": "dist/style.css",
6
6
  "type": "module",
@@ -15,8 +15,7 @@
15
15
  "deploy": "npm run build && npm publish",
16
16
  "docs:dev": "vitepress dev docs",
17
17
  "docs:build": "vitepress build docs",
18
- "docs:preview": "vitepress preview docs",
19
- "prepare": "cp dist/js/*.js ./ && cp dist/types/*.d.ts ./ && cp dist/bundle.css ./"
18
+ "docs:preview": "vitepress preview docs"
20
19
  },
21
20
  "devDependencies": {
22
21
  "@rollup/plugin-terser": "^0.4.4",
@@ -44,10 +43,6 @@
44
43
  "tslib": "^2.8.1"
45
44
  },
46
45
  "files": [
47
- "dist/js/*.js",
48
- "dist/types/*.d.ts",
49
- "dist/bundle.css",
50
- "README.md",
51
- "LICENSE"
46
+ "dist"
52
47
  ]
53
48
  }