@fishawack/lab-env 4.45.0 → 4.45.1
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/.prettierignore +1 -0
- package/CHANGELOG.md +12 -0
- package/_Test/boilerplate-python.js +39 -0
- package/package.json +1 -1
package/.prettierignore
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
## Changelog
|
|
2
2
|
|
|
3
|
+
### 4.45.1 (2025-09-04)
|
|
4
|
+
|
|
5
|
+
#### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* ignore mjml during linting ([bd15b7f](https://bitbucket.org/fishawackdigital/lab-env/commits/bd15b7f42ab5346f9fb220a155244218d8c664a7))
|
|
8
|
+
|
|
9
|
+
### 4.45.1-beta.1 (2025-09-04)
|
|
10
|
+
|
|
11
|
+
#### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* ignore mjml during linting ([bd15b7f](https://bitbucket.org/fishawackdigital/lab-env/commits/bd15b7f42ab5346f9fb220a155244218d8c664a7))
|
|
14
|
+
|
|
3
15
|
### 4.45.0 (2025-09-04)
|
|
4
16
|
|
|
5
17
|
#### Features
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
const repo = `boilerplate-python`;
|
|
4
|
+
const opts = {
|
|
5
|
+
encoding: "utf8",
|
|
6
|
+
stdio: "inherit",
|
|
7
|
+
cwd: `_Test/_fixtures/${repo}`,
|
|
8
|
+
};
|
|
9
|
+
|
|
10
|
+
const expect = require("chai").expect;
|
|
11
|
+
const execSync = require("child_process").execSync;
|
|
12
|
+
|
|
13
|
+
describe("deploy", () => {
|
|
14
|
+
before(function () {
|
|
15
|
+
this.timeout(60000 * 10);
|
|
16
|
+
|
|
17
|
+
execSync(
|
|
18
|
+
`git -C _Test/_fixtures clone git@bitbucket.org:fishawackdigital/${repo}`,
|
|
19
|
+
{ encoding: "utf8", stdio: "inherit" },
|
|
20
|
+
);
|
|
21
|
+
|
|
22
|
+
execSync("node ../../../cli.js setup", opts);
|
|
23
|
+
|
|
24
|
+
execSync("node ../../../cli.js prod", opts);
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
it(`All ${repo} tests should pass`, async () => {
|
|
28
|
+
expect(execSync("node ../../../cli.js test", opts)).to.not.equal(Error);
|
|
29
|
+
});
|
|
30
|
+
|
|
31
|
+
after(() => {
|
|
32
|
+
execSync("node ../../../cli.js nuke", opts);
|
|
33
|
+
|
|
34
|
+
execSync(`rm -rf _Test/_fixtures/${repo}`, {
|
|
35
|
+
encoding: "utf8",
|
|
36
|
+
stdio: "inherit",
|
|
37
|
+
});
|
|
38
|
+
});
|
|
39
|
+
});
|