@ni/fast-foundation 0.0.3 → 0.0.4

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 (1) hide show
  1. package/package.json +6 -4
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@ni/fast-foundation",
3
3
  "description": "A library of Web Component building blocks",
4
4
  "sideEffects": false,
5
- "version": "0.0.3",
5
+ "version": "0.0.4",
6
6
  "author": {
7
7
  "name": "National Instruments"
8
8
  },
@@ -22,12 +22,15 @@
22
22
  "unpkg": "dist/fast-foundation.min.js",
23
23
  "type": "module",
24
24
  "scripts": {
25
+ "build": "npm run clean:dist && npm run build:tsc && npm run build:rollup && npm run doc",
26
+ "pack": "npm pack",
27
+ "lint": "npm run eslint",
28
+ "format": "npm run eslint:fix",
29
+ "test": "npm run test-chrome:verbose",
25
30
  "clean:dist": "node ../../../build/clean.js dist",
26
31
  "doc": "api-extractor run --local",
27
32
  "build:rollup": "rollup -c",
28
33
  "build:tsc": "tsc -p ./tsconfig.json",
29
- "build": "npm run clean:dist && npm run build:tsc && npm run build:rollup && npm run doc",
30
- "pack": "npm pack",
31
34
  "dev": "tsc -p ./tsconfig.json -w",
32
35
  "tdd": "npm run dev & npm run test-chrome:watch",
33
36
  "tdd:firefox": "npm run dev & npm run test-firefox:watch",
@@ -35,7 +38,6 @@
35
38
  "prettier:diff": "prettier --config ../../../.prettierrc \"**/*.ts\" --list-different",
36
39
  "eslint": "eslint . --ext .ts",
37
40
  "eslint:fix": "eslint . --ext .ts --fix",
38
- "test": "npm run eslint && npm run test-chrome:verbose",
39
41
  "test-node": "mocha --reporter min --exit dist/esm/__test__/setup-node.js './dist/esm/**/*.spec.js'",
40
42
  "test-node:verbose": "mocha --reporter spec --exit dist/esm/__test__/setup-node.js './dist/esm/**/*.spec.js'",
41
43
  "test-chrome": "karma start karma.conf.cjs --browsers=ChromeHeadlessOpt --single-run --coverage",