ac-byteconverter 1.0.5 → 1.0.7

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.
package/.ncurc.js ADDED
@@ -0,0 +1,8 @@
1
+ // List packages for minor updates
2
+ const minorUpdatePackages = ['chai']
3
+
4
+ module.exports = {
5
+ target: packageName => {
6
+ return minorUpdatePackages.includes(packageName) ? 'minor' : 'latest'
7
+ }
8
+ }
package/CHANGELOG.md CHANGED
@@ -1,3 +1,22 @@
1
+
2
+ ## [1.0.7](https://github.com/mmpro/ac-byteconverter/compare/v1.0.6..v1.0.7) (2025-01-25 10:03:47)
3
+
4
+
5
+ ### Bug Fix
6
+
7
+ * **App:** Package updates | MP | [4cfb4d66f9998c94207a79c446a0899668967699](https://github.com/mmpro/ac-byteconverter/commit/4cfb4d66f9998c94207a79c446a0899668967699)
8
+ Package updates
9
+ Related issues:
10
+ <a name="1.0.6"></a>
11
+
12
+ ## [1.0.6](https://github.com/mmpro/ac-byteconverter/compare/v1.0.5..v1.0.6) (2024-06-05 14:54:47)
13
+
14
+
15
+ ### Bug Fix
16
+
17
+ * **App:** Package updates | MP | [d754df0f2f1ead83bc4a5de2e9127265900fa69a](https://github.com/mmpro/ac-byteconverter/commit/d754df0f2f1ead83bc4a5de2e9127265900fa69a)
18
+ Package updates
19
+ Related issues: [undefined/undefined#master](undefined/browse/master)
1
20
  <a name="1.0.5"></a>
2
21
 
3
22
  ## [1.0.5](https://github.com/mmpro/ac-byteconverter/compare/v1.0.4..v1.0.5) (2023-07-21 13:10:57)
@@ -0,0 +1,29 @@
1
+ const globals = require('globals');
2
+
3
+ module.exports = [
4
+ {
5
+ languageOptions: {
6
+ ecmaVersion: 2022,
7
+ sourceType: 'module',
8
+ globals: {
9
+ ...globals.commonjs,
10
+ ...globals.es6,
11
+ ...globals.node,
12
+ expect: 'readonly',
13
+ describe: 'readonly',
14
+ it: 'readonly'
15
+ }
16
+ },
17
+ rules: {
18
+ 'space-before-function-paren': 'off',
19
+ 'no-extra-semi': 'off',
20
+ 'object-curly-spacing': ['error', 'always'],
21
+ 'brace-style': ['error', 'stroustrup', { allowSingleLine: true }],
22
+ 'no-useless-escape': 'off',
23
+ 'standard/no-callback-literal': 'off',
24
+ 'new-cap': 'off',
25
+ 'no-console': ['error', { allow: ['error'] }]
26
+ },
27
+ ignores: ['temp.js', 'config/*']
28
+ }
29
+ ];
package/package.json CHANGED
@@ -3,15 +3,15 @@
3
3
  "author": "Mark Poepping (https://www.admiralcloud.com)",
4
4
  "license": "MIT",
5
5
  "repository": "admiralcloud/ac-byteconverter",
6
- "version": "1.0.5",
6
+ "version": "1.0.7",
7
7
  "dependencies": {
8
8
  "lodash": "^4.17.21"
9
9
  },
10
10
  "devDependencies": {
11
- "ac-semantic-release": "^0.4.2",
12
- "chai": "^4.3.7",
13
- "eslint": "^8.45.0",
14
- "mocha": "^10.2.0"
11
+ "ac-semantic-release": "^0.4.5",
12
+ "chai": "^4.5.0",
13
+ "eslint": "^9.19.0",
14
+ "mocha": "^11.1.0"
15
15
  },
16
16
  "scripts": {
17
17
  "test": "mocha --reporter spec"
package/.eslintrc.js DELETED
@@ -1,27 +0,0 @@
1
- const config = {
2
- root: true,
3
- 'env': {
4
- 'commonjs': true,
5
- 'es6': true,
6
- 'node': true
7
- },
8
- 'extends': 'eslint:recommended',
9
- "rules": {
10
- "space-before-function-paren": 0,
11
- "no-extra-semi": 0,
12
- "object-curly-spacing": ["error", "always"],
13
- "brace-style": ["error", "stroustrup", { "allowSingleLine": true }],
14
- "no-useless-escape": 0,
15
- "standard/no-callback-literal": 0,
16
- "new-cap": 0
17
- },
18
- globals: {
19
- describe: true,
20
- it: true
21
- },
22
- 'parserOptions': {
23
- 'ecmaVersion': 2018
24
- },
25
- }
26
-
27
- module.exports = config