@homebound/truss 1.109.0 → 1.110.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.
@@ -0,0 +1,17 @@
1
+ name: Validate PR Title
2
+
3
+ on:
4
+ pull_request_target:
5
+ types:
6
+ - opened
7
+ - reopened
8
+ - edited
9
+ - synchronize
10
+
11
+ jobs:
12
+ validate_pr_title:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: amannn/action-semantic-pull-request@v3.1.0
16
+ env:
17
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
package/CHANGELOG.md ADDED
@@ -0,0 +1,6 @@
1
+ # [1.110.0](https://github.com/homebound-team/truss/compare/v1.109.0...v1.110.0) (2022-04-03)
2
+
3
+
4
+ ### Features
5
+
6
+ * Move to semantic release. ([#68](https://github.com/homebound-team/truss/issues/68)) ([2e28aa1](https://github.com/homebound-team/truss/commit/2e28aa1cc4b5ca22c5d9b6daec78c6be0c6bc3c8))
package/README.markdown CHANGED
@@ -1,3 +1,6 @@
1
+ ![npm](https://img.shields.io/npm/v/@homebound/truss)
2
+ [![CircleCI](https://circleci.com/gh/homebound-team/truss.svg?style=svg)](https://circleci.com/gh/homebound-team/truss)
3
+
1
4
  <p align="center" style="padding: 100px">
2
5
  <img src="logo.svg" width="400" />
3
6
  </p>
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@homebound/truss",
3
- "version": "1.109.0",
3
+ "version": "1.110.0",
4
4
  "main": "build/index.js",
5
5
  "scripts": {
6
6
  "build": "tsc",
7
7
  "generate": "ts-node ./integration-test/index.ts",
8
- "test": "jest && (cd integration-test; npm test)"
8
+ "test": "jest && (cd integration-test; npm test)",
9
+ "semantic-release": "semantic-release"
9
10
  },
10
11
  "license": "ISC",
11
12
  "dependencies": {
@@ -17,6 +18,13 @@
17
18
  "@emotion/jest": "^11.1.0",
18
19
  "@emotion/react": "^11.1.4",
19
20
  "@material-ui/core": "^4.10.2",
21
+ "@semantic-release/changelog": "^6.0.1",
22
+ "@semantic-release/commit-analyzer": "^9.0.2",
23
+ "@semantic-release/exec": "^6.0.3",
24
+ "@semantic-release/git": "^10.0.1",
25
+ "@semantic-release/github": "^8.0.2",
26
+ "@semantic-release/npm": "^9.0.1",
27
+ "@semantic-release/release-notes-generator": "^10.0.3",
20
28
  "@testing-library/react": "^10.3.0",
21
29
  "@types/jest": "^26.0.20",
22
30
  "fela": "^11.6.1",
@@ -25,6 +33,7 @@
25
33
  "react": "^16.14.0",
26
34
  "react-dom": "^16.14.0",
27
35
  "react-fela": "^11.6.1",
36
+ "semantic-release": "^19.0.2",
28
37
  "ts-jest": "^26.4.4",
29
38
  "ts-node": "^8.10.2",
30
39
  "typescript": "^4.1.3"
@@ -0,0 +1,11 @@
1
+ module.exports = {
2
+ branches: ["main"],
3
+ plugins: [
4
+ "@semantic-release/commit-analyzer",
5
+ "@semantic-release/release-notes-generator",
6
+ "@semantic-release/changelog",
7
+ "@semantic-release/npm",
8
+ "@semantic-release/github",
9
+ "@semantic-release/git",
10
+ ],
11
+ };
package/package.json.bak DELETED
@@ -1,38 +0,0 @@
1
- {
2
- "name": "@homebound/truss",
3
- "version": "1.0.0-bump",
4
- "main": "build/index.js",
5
- "scripts": {
6
- "build": "tsc",
7
- "generate": "ts-node ./integration-test/index.ts",
8
- "test": "jest && (cd integration-test; npm test)"
9
- },
10
- "license": "ISC",
11
- "dependencies": {
12
- "csstype": "^2.6.10",
13
- "prettier": "^2.0.5",
14
- "ts-poet": "^3.2.2"
15
- },
16
- "devDependencies": {
17
- "@emotion/jest": "^11.1.0",
18
- "@emotion/react": "^11.1.4",
19
- "@material-ui/core": "^4.10.2",
20
- "@testing-library/react": "^10.3.0",
21
- "@types/jest": "^26.0.20",
22
- "fela": "^11.6.1",
23
- "jest": "^26.6.3",
24
- "jest-react-fela": "^11.6.1",
25
- "react": "^16.14.0",
26
- "react-dom": "^16.14.0",
27
- "react-fela": "^11.6.1",
28
- "ts-jest": "^26.4.4",
29
- "ts-node": "^8.10.2",
30
- "typescript": "^4.1.3"
31
- },
32
- "jest": {
33
- "preset": "ts-jest",
34
- "testMatch": [
35
- "<rootDir>/src/*.test.(ts|tsx)"
36
- ]
37
- }
38
- }