@lisergia/core 16.0.1 → 17.0.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,20 @@
1
+
2
+ 
3
+ > @lisergia/core@16.0.0 build
4
+ > tsup src/index.ts --format cjs,esm --dts
5
+
6
+ CLI Building entry: src/index.ts
7
+ CLI Using tsconfig: tsconfig.json
8
+ CLI tsup v8.5.0
9
+ CLI Target: node16
10
+ CJS Build start
11
+ ESM Build start
12
+ CJS dist/index.cjs 16.12 KB
13
+ CJS ⚡️ Build success in 16ms
14
+ ESM dist/index.js 13.87 KB
15
+ ESM ⚡️ Build success in 17ms
16
+ DTS Build start
17
+ DTS ⚡️ Build success in 888ms
18
+ DTS dist/index.d.cts 5.82 KB
19
+ DTS dist/index.d.ts 5.82 KB
20
+ ⠙
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # @lisergia/core
2
2
 
3
+ ## 17.0.0
4
+
5
+ ### Major Changes
6
+
7
+ - Fix bug with pushState.
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @lisergia/config-tsconfig@17.0.0
13
+
3
14
  ## 16.0.0
4
15
 
5
16
  ### Major Changes
package/dist/index.cjs CHANGED
@@ -437,7 +437,7 @@ var ApplicationManager = class extends Component {
437
437
  }
438
438
  this.routePushState = false;
439
439
  this.route = document.location.pathname;
440
- this.routePushState = false;
440
+ this.routePushState = true;
441
441
  }
442
442
  //
443
443
  // Scroll.
package/dist/index.js CHANGED
@@ -394,7 +394,7 @@ var ApplicationManager = class extends Component {
394
394
  }
395
395
  this.routePushState = false;
396
396
  this.route = document.location.pathname;
397
- this.routePushState = false;
397
+ this.routePushState = true;
398
398
  }
399
399
  //
400
400
  // Scroll.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lisergia/core",
3
- "version": "16.0.1",
3
+ "version": "17.0.0",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "type": "module",
@@ -9,7 +9,7 @@
9
9
  "dev": "tsup src/index.ts --format cjs,esm --dts --watch"
10
10
  },
11
11
  "dependencies": {
12
- "@lisergia/config-tsconfig": "16.0.0",
12
+ "@lisergia/config-tsconfig": "17.0.0",
13
13
  "auto-bind": "^5.0.1",
14
14
  "gsap": "^3.13.0",
15
15
  "lenis": "^1.3.1",
package/src/App.ts CHANGED
@@ -278,7 +278,7 @@ export class ApplicationManager extends Component {
278
278
 
279
279
  this.routePushState = false
280
280
  this.route = document.location.pathname
281
- this.routePushState = false
281
+ this.routePushState = true
282
282
  }
283
283
 
284
284
  //