jmapcloud-ng-types 0.4.0 → 0.4.2

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.
Files changed (2) hide show
  1. package/package.json +9 -9
  2. package/.prettierrc +0 -10
package/package.json CHANGED
@@ -1,14 +1,15 @@
1
1
  {
2
2
  "name": "jmapcloud-ng-types",
3
- "version": "0.4.0",
3
+ "version": "0.4.2",
4
4
  "description": "JMap Cloud specific version of JMap Cloud NG types and interfaces",
5
5
  "main": "src/app.ts",
6
6
  "scripts": {
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
8
- "pub": "export NODE_ENV='production'; gulp publish --gulpfile build/gulpfile.js;",
9
- "copy": "export NODE_ENV='production'; gulp copy --gulpfile build/gulpfile.js;",
10
- "commit-doc": "export NODE_ENV='production'; gulp commit-doc --gulpfile build/gulpfile.js;",
11
- "doc-test": "export DOC_DIR='./docs/latest'; gulp typedoc --gulpfile build/gulpfile.js;"
8
+ "pub": "export NODE_ENV='production'; node build/buildfile.js publish;",
9
+ "copy": "export NODE_ENV='production'; node build/buildfile.js copy;",
10
+ "commit-doc": "export NODE_ENV='production'; node build/buildfile.js commit-doc;",
11
+ "doc-test": "export DOC_DIR='./docs/latest'; node build/buildfile.js doc-test;",
12
+ "copy-latest": "node build/buildfile.js copy-latest;"
12
13
  },
13
14
  "repository": {
14
15
  "type": "git",
@@ -21,11 +22,10 @@
21
22
  },
22
23
  "homepage": "https://github.com/k2geospatial/jmapcloud-ng-types#readme",
23
24
  "devDependencies": {
24
- "@types/react": "^17.0.2",
25
- "gulp": "^4.0.2",
26
- "jmapcloud-ng-core-types": "0.4.0",
25
+ "@types/react": "18.2.21",
26
+ "jmapcloud-ng-core-types": "0.4.2",
27
27
  "maplibre-gl": "^3.2.1",
28
- "react": "^17.0.2",
28
+ "react": "^18.2.0",
29
29
  "typedoc": "^0.24.8"
30
30
  }
31
31
  }
package/.prettierrc DELETED
@@ -1,10 +0,0 @@
1
- {
2
- "printWidth": 120,
3
- "semi": false,
4
- "quoteProps": "consistent",
5
- "jsxBracketSameLine": true,
6
- "trailingComma": "none",
7
- "tabWidth": 2,
8
- "arrowParens": "avoid",
9
- "bracketSpacing": true
10
- }