@i-santos/firestack 1.0.0 → 2.0.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.
- package/CHANGELOG.md +12 -0
- package/package.json +11 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- e7ab55f: Rename package scope to `@i-santos` and adopt the Changesets-only release workflow.
|
|
8
|
+
|
|
9
|
+
Breaking change details:
|
|
10
|
+
|
|
11
|
+
- What changed: the package name moved from `@igorsantos-dev/firestack` to `@i-santos/firestack`.
|
|
12
|
+
- Why: align package identity with the standardized personal brand scope and the new release process.
|
|
13
|
+
- How to migrate: update installs/usages from `@igorsantos-dev/firestack` to `@i-santos/firestack` in scripts and docs.
|
|
14
|
+
|
|
3
15
|
## Unreleased
|
|
4
16
|
|
|
5
17
|
- `firestack test`: added deterministic Functions env parity for test processes.
|
package/package.json
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@i-santos/firestack",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "Portable DX and testing bootstrap for Node/Firebase projects",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
7
7
|
"license": "UNLICENSED",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/i-santos/firestack"
|
|
11
|
+
},
|
|
8
12
|
"bin": {
|
|
9
13
|
"firestack": "bin/firestack.mjs"
|
|
10
14
|
},
|
|
@@ -26,7 +30,12 @@
|
|
|
26
30
|
"changeset": "changeset",
|
|
27
31
|
"version-packages": "changeset version",
|
|
28
32
|
"release": "npm run check && changeset publish",
|
|
29
|
-
"release:ci": "npm run check && npm run version-packages"
|
|
33
|
+
"release:ci": "npm run check && npm run version-packages",
|
|
34
|
+
"beta:enter": "changeset pre enter beta",
|
|
35
|
+
"beta:exit": "changeset pre exit",
|
|
36
|
+
"beta:version": "changeset version",
|
|
37
|
+
"beta:publish": "changeset publish",
|
|
38
|
+
"beta:promote": "npx @i-santos/create-package-starter@1.5.0-beta.13 promote-stable --dir ."
|
|
30
39
|
},
|
|
31
40
|
"devDependencies": {
|
|
32
41
|
"@playwright/test": "^1.58.2",
|