Skip to content

Commit d493a9e

Browse files
Merge pull request #18 from rei/remove-cov-stats
Removing @rei/cov-stats from vanilla and vue templates. This is autom…
2 parents 778226c + 0a70345 commit d493a9e

File tree

7 files changed

+9
-10
lines changed

7 files changed

+9
-10
lines changed

.env

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +0,0 @@
1-
NODE_VERSION=16.20.2
2-
GITLAB_CI_NODE_VERSION=16.20

RELEASE-NOTES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release Notes
22

3+
## 2.3.0
4+
5+
- Removing @rei/cov-stats from vanilla and vue templates. This is automatically run in the GL pipeline.
6+
- Removing node versions in .env. Defaulting to LTS version in packages now to keep inline with GL pipeline set to LTS.
7+
38
## 2.2.1
49
- Adding `index.html` file for running the dev server during microsite app development.
510
- Update `.nvmrc` to use LTS.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@rei/create-package",
3-
"version": "2.2.1",
3+
"version": "2.3.0",
4+
45
"description": "An NPM initializer that scaffolds new NPM packages",
56
"bugs": {
67
"url": "https://github.com/rei/create-package/issues"

src/api.test.mts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import * as api from './api.mjs';
33

44
describe('API methods', () => {
55
it('should exist', () => {
6-
expect(api.CONFIG.NODE_VERSION).equals('16.20.2');
76
expect(api.TemplatePaths).to.contain.keys([
87
'COMMON',
98
'VUE',

templates/vanilla/package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
"dev": "vite --open",
2525
"lint": "eslint --ext .mts,.cjs .",
2626
"prepare": "npm run type-check && npm run lint && npm run test && npm run build",
27-
"postprepare": "send-cov-stats",
2827
"type-check": "tsc --noEmit",
2928
"build": "vite build",
3029
"test": "npm run unit -- --coverage",
@@ -40,7 +39,6 @@
4039
"@vue/test-utils": "^2.4.1",
4140
"@vue/tsconfig": "^0.4.0",
4241
"@tsconfig/node16": "^16.1.1",
43-
"@rei/cov-stats": "^1.5.1",
4442
"eslint": "^8.49.0",
4543
"eslint-config-airbnb-base": "^15.0.0",
4644
"eslint-config-airbnb-typescript": "^17.1.0",

templates/vue/package.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,12 @@
2727
"dev": "vite --open",
2828
"lint": "eslint --ext .mts,.vue,.cjs .",
2929
"prepare": "npm run type-check && npm run lint && npm run test && npm run build",
30-
"postprepare": "send-cov-stats",
3130
"test": "npm run unit -- --coverage",
3231
"type-check": "vue-tsc --noEmit",
3332
"unit": "vitest run"
3433
},
3534
"dependencies": {},
3635
"devDependencies": {
37-
"@rei/cov-stats": "^1.5.1",
3836
"@rei/vite-base-config": "^4",
3937
"@typescript-eslint/eslint-plugin": "^6.7.2",
4038
"@typescript-eslint/parser": "^6.7.2",

0 commit comments

Comments
 (0)