@nitro/exporter 8.1.0 → 9.0.0

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/package.json CHANGED
@@ -1,13 +1,16 @@
1
1
  {
2
2
  "name": "@nitro/exporter",
3
- "version": "8.1.0",
3
+ "version": "9.0.0",
4
4
  "description": "An exporting package for nitro. Generate static packages with ease.",
5
5
  "license": "MIT",
6
- "repository": "merkle-open/generator-nitro",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/merkle-open/generator-nitro.git"
9
+ },
7
10
  "author": "The Nitro Team",
8
11
  "engines": {
9
- "node": ">=16.13.0 <21",
10
- "npm": ">=8.1.0 <10"
12
+ "node": ">=18.12.0 <21",
13
+ "npm": ">=8.19.2 <11"
11
14
  },
12
15
  "main": "index.js",
13
16
  "scripts": {
@@ -25,14 +28,14 @@
25
28
  "exporter"
26
29
  ],
27
30
  "peerDependencies": {
28
- "@nitro/app": ">=8.1.0",
29
- "@nitro/gulp": ">=8.1.0"
31
+ "@nitro/app": ">=9.0.0",
32
+ "@nitro/gulp": ">=9.0.0"
30
33
  },
31
34
  "dependencies": {
32
35
  "array-unique": "0.3.2",
33
36
  "del": "6.1.1",
34
37
  "delete-empty": "3.0.0",
35
- "glob": "8.1.0",
38
+ "glob": "10.3.10",
36
39
  "gulp-filter": "7.0.0",
37
40
  "gulp-html-minifier-terser": "7.1.0",
38
41
  "gulp-vinyl-zip": "2.5.0"
@@ -40,8 +43,8 @@
40
43
  "devDependencies": {
41
44
  "@merkle-open/eslint-config": "3.0.0",
42
45
  "@nitro/app": "*",
43
- "eslint": "8.46.0",
44
- "eslint-plugin-import": "2.28.1"
46
+ "eslint": "8.52.0",
47
+ "eslint-plugin-import": "2.29.0"
45
48
  },
46
49
  "publishConfig": {
47
50
  "access": "public"
@@ -5,7 +5,7 @@ const fs = require('fs');
5
5
  const path = require('path');
6
6
  const gulpZip = require('gulp-vinyl-zip').zip;
7
7
  const htmlmin = require('gulp-html-minifier-terser');
8
- const glob = require('glob');
8
+ const { globSync } = require('glob');
9
9
  const unique = require('array-unique');
10
10
  const deleteEmpty = require('delete-empty');
11
11
  const utils = require('../lib/utils.js');
@@ -118,7 +118,7 @@ module.exports = function (gulp, config) {
118
118
  replacements.forEach((replacement) => {
119
119
  let files = [];
120
120
  replacement.glob.forEach((g) => {
121
- files = files.concat(glob.sync(g));
121
+ files = files.concat(globSync(g));
122
122
  });
123
123
  unique(files);
124
124
  files.forEach((f) => {