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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ jobs:
node-version: 20
cache: npm

- run: npm install --legacy-peer-deps
- run: npm install
- run: npm run build
- run: npm test
22 changes: 0 additions & 22 deletions .npmignore

This file was deleted.

12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,17 @@ All notable changes to **NoJS Elements** will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased](https://github.com/no-js-dev/nojs-elements/compare/v1.15.4...HEAD)
## [Unreleased](https://github.com/no-js-dev/nojs-elements/compare/v1.15.5...HEAD)

## [1.15.5](https://github.com/no-js-dev/nojs-elements/compare/v1.15.4...v1.15.5) — 2026-06-24

### Removed

- Removed npm distribution config (.npmignore, --legacy-peer-deps)

### Changed

- Clarified CDN-only distribution model

## [1.15.4](https://github.com/no-js-dev/nojs-elements/compare/v1.15.3...v1.15.4) — 2026-06-22

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ For the full directive reference with all attributes, events, CSS classes, and a
Contributions are welcome! Please open an issue or submit a pull request.

```bash
# Development (source builds only — end users load via CDN)
npm install # install dependencies
npm run build # esbuild → dist/{iife,esm,cjs}/nojs-elements.js
npm test # Jest unit tests
Expand Down
2 changes: 1 addition & 1 deletion dist/cjs/nojs-elements.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/esm/nojs-elements.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/iife/nojs-elements.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 2 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@no-js-dev/nojs-elements",
"version": "1.15.4",
"version": "1.15.5",
"description": "Element plugins for No.JS — drag-and-drop, validation, and more",
"main": "dist/cjs/nojs-elements.js",
"module": "dist/esm/nojs-elements.js",
Expand Down Expand Up @@ -31,21 +31,12 @@
"./validate": "./src/validate/index.js",
"./virtual-list": "./src/virtual-list/index.js"
},
"files": [
"dist/",
"src/",
"LICENSE"
],
"scripts": {
"build": "node build.js",
"test": "jest",
"test:watch": "jest --watch",
"test:verbose": "jest --verbose",
"start": "node docs/dev-server.js",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"@no-js-dev/nojs": ">=1.13.0 <2.0.0"
"start": "node docs/dev-server.js"
},
"devDependencies": {
"@babel/core": "^7.29.7",
Expand Down