Skip to content

Commit

Permalink
feat: emit outlet-change event
Browse files Browse the repository at this point in the history
  • Loading branch information
ducksoupdev committed Oct 2, 2022
1 parent 468ac2f commit 088f04a
Show file tree
Hide file tree
Showing 28 changed files with 570 additions and 367 deletions.
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
version: 2
updates:
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "weekly"

- package-ecosystem: "npm"
directory: "/site"
schedule:
interval: "weekly"
3 changes: 3 additions & 0 deletions .ncurc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"reject": ["standard"]
}
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.2.0] - 2022-10-02

### New
- Emit `outlet-change` event when an outlet is populated

### Updates
- Uplift devDependencies
- Convert e2e tests to Cypress v10.x

## [3.1.1] - 2021-11-16

### Fixes
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ Create an `index.html` file and copy the following between the `<body>` tags.

<script type="module">
import { createRouter } from 'https://cdn.skypack.dev/@ficusjs/router@3'
import { createComponent } from 'https://cdn.skypack.dev/ficusjs@3'
import { renderer, html } from 'https://cdn.skypack.dev/@ficusjs/renderers@4/lit-html'
import { createComponent } from 'https://cdn.skypack.dev/ficusjs@5'
import { renderer, html } from 'https://cdn.skypack.dev/@ficusjs/renderers@5/lit-html'
createComponent('home-page', {
renderer,
Expand Down
13 changes: 13 additions & 0 deletions cypress.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { defineConfig } from 'cypress'

export default defineConfig({
reporter: 'junit',
reporterOptions: {
mochaFile: 'cypress/reports/junit/ci-test-output-[hash].xml',
jenkinsMode: true,
rootSuiteTitle: 'FicusJS Router Integration Tests',
testsuitesTitle: 'Cypress Tests'
},
video: false,
e2e: {}
})
10 changes: 0 additions & 10 deletions cypress.json

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion dist/router.mjs

Large diffs are not rendered by default.

Loading

0 comments on commit 088f04a

Please sign in to comment.