@ghini/xstart 25.8.9172416 → 25.8.24084529

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/README.md CHANGED
@@ -11,6 +11,8 @@
11
11
  ```
12
12
  Remove-Item -Recurse -Force .git
13
13
  git init
14
+ git add .
15
+ git commit -m "Initial commit"
14
16
  git branch -M xstart
15
17
  git remote add origin https://github.com/xghini/mynpm.git
16
18
  git push -u origin xstart
package/dev/lib/index.js CHANGED
@@ -1,3 +1 @@
1
- export function start(){
2
- console.log('Hello Ghini')
3
- }
1
+ export * from "./start.js";
@@ -0,0 +1,3 @@
1
+ export function start(){
2
+ console.log('Hello Ghini')
3
+ }
package/dev/main.js CHANGED
@@ -1,6 +1,5 @@
1
1
  import * as index from "./lib/index.js";
2
- const xstart = {
2
+ export default {
3
3
  ...index,
4
- };
5
- export default xstart;
4
+ }
6
5
  export * from "./lib/index.js";
package/dist/lib/index.js CHANGED
@@ -1,3 +1 @@
1
- export function start(){
2
- console.log('Hello Ghini')
3
- }
1
+ export * from "./start.js";
@@ -0,0 +1,3 @@
1
+ export function start(){
2
+ console.log('Hello Ghini')
3
+ }
package/dist/main.js CHANGED
@@ -1,6 +1,5 @@
1
1
  import * as index from "./lib/index.js";
2
- const xstart = {
2
+ export default {
3
3
  ...index,
4
- };
5
- export default xstart;
4
+ }
6
5
  export * from "./lib/index.js";
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@ghini/xstart",
3
- "version": "25.8.9172416",
3
+ "version": "25.8.24084529",
4
4
  "scripts": {
5
5
  "build": "node ./build.js",
6
- "pub": "npm run build && npm publish && git add . && git commit -m 'update' && git push"
6
+ "pub": "npm run build && npm publish && git add . && git commit -m 'update' && git push",
7
+ "update": "npm cache clean --force&&npm update"
7
8
  },
8
9
  "exports": {
9
10
  ".": {
package/test/0.js CHANGED
@@ -1,3 +1,3 @@
1
- import { start } from "@ghini/start/dev";
1
+ import { start } from "@ghini/xstart/dev";
2
2
 
3
3
  start();