i18nizeelement 0.5.0 → 0.5.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.
@@ -0,0 +1 @@
1
+ export {default} from './i18nizeelement-jamilih-plugin.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "i18nizeelement",
3
- "version": "0.5.0",
3
+ "version": "0.5.2",
4
4
  "author": "Brett Zamir",
5
5
  "contributors": [],
6
6
  "license": "MIT",
@@ -30,6 +30,21 @@
30
30
  "html",
31
31
  "rtl"
32
32
  ],
33
+ "scripts": {
34
+ "copy": "cp i18nizeelement-jamilih-plugin.es6.d.ts dist/i18nizeelement-jamilih-plugin.es6.d.ts",
35
+ "lint": "npm run eslint",
36
+ "eslint": "eslint --ext=js,md,html .",
37
+ "tsc": "tsc",
38
+ "build": "npm run rollup && npm run copy && tsc -p tsconfig-prod.json",
39
+ "rollup": "rollup -c rollup.config.umd.js && rollup -c rollup.config.es6.js",
40
+ "start": "npm run test:watch",
41
+ "mocha": "_mocha --require chai/register-expect.js --require test/bootstrap/node.js test/*.js --exit",
42
+ "test:watch": "nodemon --watch src --watch test --exec 'npm test'",
43
+ "c8": "echo 'Deleting esm cache for coverage' && rm -Rf node_modules/.cache && c8 npm run mocha",
44
+ "test": "npm run eslint && npm run build && npm run c8",
45
+ "browser-test": "npm run build && open-cli http://127.0.0.1:8080/test/ && static -p 8080",
46
+ "prepublishOnly": "npm run build && npm test"
47
+ },
33
48
  "engines": {
34
49
  "node": ">=16.0.0"
35
50
  },
@@ -71,18 +86,5 @@
71
86
  "rollup": "^3.21.6",
72
87
  "source-map-support": "^0.5.21",
73
88
  "typescript": "^5.0.4"
74
- },
75
- "scripts": {
76
- "lint": "npm run eslint",
77
- "eslint": "eslint --ext=js,md,html .",
78
- "tsc": "tsc",
79
- "build": "npm run rollup && tsc -p tsconfig-prod.json",
80
- "rollup": "rollup -c rollup.config.umd.js && rollup -c rollup.config.es6.js",
81
- "start": "npm run test:watch",
82
- "mocha": "_mocha --require chai/register-expect.js --require test/bootstrap/node.js test/*.js --exit",
83
- "test:watch": "nodemon --watch src --watch test --exec 'npm test'",
84
- "c8": "echo 'Deleting esm cache for coverage' && rm -Rf node_modules/.cache && c8 npm run mocha",
85
- "test": "npm run eslint && npm run build && npm run c8",
86
- "browser-test": "npm run build && open-cli http://127.0.0.1:8080/test/ && static -p 8080"
87
89
  }
88
- }
90
+ }