Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

- name: Build dist/ Directory
id: build
run: npm run bundle
run: npm run package

# This will fail the workflow if the `dist/` directory is different than
# expected.
Expand Down
1 change: 1 addition & 0 deletions .node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
24.4.0
2 changes: 1 addition & 1 deletion __tests__/parser.test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const { parseChangelog } = require('../src/parser')
import { parseChangelog } from '../src/parser.js'

// Sample changelog content based on Mantle Framework format
const sampleChangelog = `# Changelog
Expand Down
15 changes: 15 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
// See: https://jestjs.io/docs/configuration

/** @type {import('jest').Config} */
const jestConfig = {
clearMocks: true,
collectCoverage: false,
moduleFileExtensions: ['js'],
reporters: ['default'],
testEnvironment: 'node',
testMatch: ['**/*.test.js'],
testPathIgnorePatterns: ['/dist/', '/node_modules/'],
verbose: true
}

export default jestConfig
Loading