@sydsoft/base 1.3.0 → 1.4.0

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,3 @@
1
+ export * from "./alert";
2
+ export * from "./datetime";
3
+ export * from "./icon";
@@ -0,0 +1,3 @@
1
+ export * from "./alert";
2
+ export * from "./datetime";
3
+ export * from "./icon";
package/package.json CHANGED
@@ -1,15 +1,18 @@
1
1
  {
2
2
  "name": "@sydsoft/base",
3
3
  "private": false,
4
- "version": "1.3.0",
4
+ "version": "1.4.0",
5
5
  "description": "",
6
- "main": "dist/index.js",
7
- "module": "dist/index.js",
8
- "types": "dist/index.d.ts",
6
+ "main": "./dist/cjs/index.js",
7
+ "module": "./dist/esm/index.js",
8
+ "types": "./dist/esm/index.d.ts",
9
+ "files": [
10
+ "./dist/"
11
+ ],
9
12
  "scripts": {
13
+ "test": "npm run build && npm pack",
14
+ "copyCSS": "copyfiles -u 2 \"../@base/**/*.css\" dist/esm",
10
15
  "build": "rm -rf ./dist && tsc && npm run copyCSS",
11
- "pack": "npm pack",
12
- "copyCSS": "copyfiles -u 2 \"../@base/**/*.css\" dist/",
13
16
  "publishNPM": "npm run build && npm version patch && npm version minor && npm publish --dry-run && npm publish --access public"
14
17
  },
15
18
  "publishConfig": {
package/dist/index.d.ts DELETED
@@ -1,8 +0,0 @@
1
- /**
2
- * Copyright (c) 2024
3
- * @author: izzetseydaoglu
4
- * @last-modified: 16.02.2024 03:33
5
- */
6
- export { Alert } from "./alert";
7
- export * from './datetime';
8
- export * from './icon';
package/dist/index.js DELETED
@@ -1,8 +0,0 @@
1
- /**
2
- * Copyright (c) 2024
3
- * @author: izzetseydaoglu
4
- * @last-modified: 16.02.2024 03:33
5
- */
6
- export { Alert } from "./alert";
7
- export * from './datetime';
8
- export * from './icon';
package/global.d.ts DELETED
@@ -1,2 +0,0 @@
1
- // global.d.ts
2
- declare module "*.module.css";
package/tsconfig.json DELETED
@@ -1,22 +0,0 @@
1
- {
2
- "include": ["../@base", "global.d.ts"],
3
- "exclude": ["./dist", "node_modules"],
4
- "compilerOptions": {
5
- "module": "esnext",
6
- "lib": ["dom", "esnext"],
7
- "importHelpers": true,
8
- "declaration": true,
9
- "sourceMap": false,
10
- "rootDir": "../@base",
11
- "outDir": "./dist",
12
- "strict": true,
13
- "noFallthroughCasesInSwitch": true,
14
- "noUnusedLocals": true,
15
- "noUnusedParameters": true,
16
- "moduleResolution": "Node",
17
- "jsx": "react-jsx",
18
- "esModuleInterop": true,
19
- "skipLibCheck": true,
20
- "forceConsistentCasingInFileNames": true
21
- }
22
- }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes