Skip to content

Commit

Permalink
fix: wip
Browse files Browse the repository at this point in the history
  • Loading branch information
BendingBender committed Aug 24, 2021
1 parent ae01f23 commit b7f103e
Show file tree
Hide file tree
Showing 6 changed files with 57 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .release-it.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,10 @@
},
"github": {
"release": true
},
"plugins": {
"@release-it/keep-a-changelog": {
"filename": "CHANGELOG.md"
}
}
}
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Changelog
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).

## [Unreleased]
### Added
- Modularize Java and Flash detection, offer bundles excluding either Java or Flash detection or both

### Changed
- (**breaking**) Expose the client.js variant that *without* Java and Flash detection for browser bundlers
- Update all production and dev dependencies
- Use `ua-parser-js` package from `npm` instead of a vendored copy
- Use `murmurhash-js` package from `npm` insteda of a vendored copy of an older implementation
- Update vendored `deployJava.js` to latest version

### Fixed
- Migrate to webpack-based build to fix broken bundle

## [0.1.11] - 2016-01-25

## [0.1.10] - 2016-01-25

## [0.1.9] - 2016-01-16

## [0.1.8] - 2016-01-03

## [0.1.7] - 2016-01-02

## [0.1.6] - 2015-12-31

## [0.1.5] - 2015-09-13
2 changes: 1 addition & 1 deletion karma/local.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = function (config) {
localConfig.concurrency = Infinity;
// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
localConfig.browsers = ['Chrome', 'Safari', 'Firefox', 'Opera'];
localConfig.browsers = ['Chrome', 'Firefox', 'Opera'];

config.set(localConfig);
};
15 changes: 15 additions & 0 deletions package-lock.json

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

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,13 @@
"dist/**/*",
"logo.jpg",
"scripts/**/*",
"src/**/*"
"src/**/*",
"!.eslintrc.js"
],
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@release-it/keep-a-changelog": "^2.3.0",
"eslint": "^7.32.0",
"husky": "^7.0.1",
"istanbul-instrumenter-loader": "^3.0.1",
Expand Down
1 change: 0 additions & 1 deletion releasenotes.md

This file was deleted.

0 comments on commit b7f103e

Please sign in to comment.