projen-modules 0.1.4__tar.gz → 0.1.5__tar.gz

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,82 @@
1
+ Metadata-Version: 2.1
2
+ Name: projen_modules
3
+ Version: 0.1.5
4
+ Summary: A collection of projen modules
5
+ Home-page: https://github.com/daveshepherd/projen-modules.git
6
+ Author: Dave Shepherd<dave.shepherd@endor.me.uk>
7
+ License: Apache-2.0
8
+ Project-URL: Source, https://github.com/daveshepherd/projen-modules.git
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Operating System :: OS Independent
11
+ Classifier: Programming Language :: JavaScript
12
+ Classifier: Programming Language :: Python :: 3 :: Only
13
+ Classifier: Programming Language :: Python :: 3.8
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Typing :: Typed
18
+ Classifier: Development Status :: 5 - Production/Stable
19
+ Classifier: License :: OSI Approved
20
+ Requires-Python: ~=3.8
21
+ Description-Content-Type: text/markdown
22
+ License-File: LICENSE
23
+ Requires-Dist: constructs==10.4.2
24
+ Requires-Dist: jsii<2.0.0,>=1.104.0
25
+ Requires-Dist: projen==0.90.0
26
+ Requires-Dist: publication>=0.0.3
27
+ Requires-Dist: typeguard<4.3.0,>=2.13.3
28
+
29
+ # projen-modules
30
+
31
+ A collection of custom projen modules, that can be used to bootstrap and maintain consistent project configuration, tooling, dependencies, and builds.
32
+
33
+ ## Getting Started
34
+
35
+ ```sh
36
+ yarn install
37
+ npx projen build
38
+ ```
39
+
40
+ This will:
41
+
42
+ * Install the dependencies
43
+ * Apply any projen changes
44
+ * Run tests
45
+ * Package project locally
46
+
47
+ Any files changed by projen should be committed to git.
48
+
49
+ Running the tests like this will update any snapshot files, this should be reviewed and committed to git.
50
+
51
+ ## Testing
52
+
53
+ Types of testing:
54
+
55
+ * Snapshot - projen project outputs are stored as a snapshot in the corresponding `__snapshots__` directory. When the project changes then it is expected that these snapshots change too and should be reviewed committed alongside the project.
56
+ * Unit tests - these assert on specific functionality of the project and should be written for any new functionality added.
57
+
58
+ ## Creating a New Project
59
+
60
+ ```
61
+ npx projen new {project} --from projen-modules
62
+ ```
63
+
64
+ Some projects may have required fields that need to be specified as part of this command, review any errors for details what needs to be specified.
65
+
66
+ ### Project Types
67
+
68
+ | Project type | Description |
69
+ | --------------------------------------- | ------------------------- |
70
+ | [npm-package](API.md#npmpackage-) | A typescript npm package |
71
+ | [python-package](API.md#pythonpackage-) | A python package |
72
+ | [jsii-package](API.md#jsiiproject-) | A typescript JSII package |
73
+
74
+ ## Project Structure
75
+
76
+ All source is located in `src` and is grouped by:
77
+
78
+ * `components` - these are common building blocks that can be used by projects to implement specific project functionality.
79
+ * `projects` - these are projects that can be built from this project (see #something)
80
+ * `utils` - these are helper functions that are often reused
81
+
82
+ `test` contains tests, and mirrors the `src` directory structure. Within here there are `__snapshots__` which contain snapshots of project tests (see #section).
@@ -0,0 +1,54 @@
1
+ # projen-modules
2
+
3
+ A collection of custom projen modules, that can be used to bootstrap and maintain consistent project configuration, tooling, dependencies, and builds.
4
+
5
+ ## Getting Started
6
+
7
+ ```sh
8
+ yarn install
9
+ npx projen build
10
+ ```
11
+
12
+ This will:
13
+
14
+ * Install the dependencies
15
+ * Apply any projen changes
16
+ * Run tests
17
+ * Package project locally
18
+
19
+ Any files changed by projen should be committed to git.
20
+
21
+ Running the tests like this will update any snapshot files, this should be reviewed and committed to git.
22
+
23
+ ## Testing
24
+
25
+ Types of testing:
26
+
27
+ * Snapshot - projen project outputs are stored as a snapshot in the corresponding `__snapshots__` directory. When the project changes then it is expected that these snapshots change too and should be reviewed committed alongside the project.
28
+ * Unit tests - these assert on specific functionality of the project and should be written for any new functionality added.
29
+
30
+ ## Creating a New Project
31
+
32
+ ```
33
+ npx projen new {project} --from projen-modules
34
+ ```
35
+
36
+ Some projects may have required fields that need to be specified as part of this command, review any errors for details what needs to be specified.
37
+
38
+ ### Project Types
39
+
40
+ | Project type | Description |
41
+ | --------------------------------------- | ------------------------- |
42
+ | [npm-package](API.md#npmpackage-) | A typescript npm package |
43
+ | [python-package](API.md#pythonpackage-) | A python package |
44
+ | [jsii-package](API.md#jsiiproject-) | A typescript JSII package |
45
+
46
+ ## Project Structure
47
+
48
+ All source is located in `src` and is grouped by:
49
+
50
+ * `components` - these are common building blocks that can be used by projects to implement specific project functionality.
51
+ * `projects` - these are projects that can be built from this project (see #something)
52
+ * `utils` - these are helper functions that are often reused
53
+
54
+ `test` contains tests, and mirrors the `src` directory structure. Within here there are `__snapshots__` which contain snapshots of project tests (see #section).
@@ -5,7 +5,7 @@ kwargs = json.loads(
5
5
  """
6
6
  {
7
7
  "name": "projen_modules",
8
- "version": "0.1.4",
8
+ "version": "0.1.5",
9
9
  "description": "A collection of projen modules",
10
10
  "license": "Apache-2.0",
11
11
  "url": "https://github.com/daveshepherd/projen-modules.git",
@@ -26,7 +26,7 @@ kwargs = json.loads(
26
26
  ],
27
27
  "package_data": {
28
28
  "projen_modules._jsii": [
29
- "projen-modules@0.1.4.jsii.tgz"
29
+ "projen-modules@0.1.5.jsii.tgz"
30
30
  ],
31
31
  "projen_modules": [
32
32
  "py.typed"
@@ -10,11 +10,49 @@ yarn install
10
10
  npx projen build
11
11
  ```
12
12
 
13
+ This will:
14
+
15
+ * Install the dependencies
16
+ * Apply any projen changes
17
+ * Run tests
18
+ * Package project locally
19
+
20
+ Any files changed by projen should be committed to git.
21
+
22
+ Running the tests like this will update any snapshot files, this should be reviewed and committed to git.
23
+
24
+ ## Testing
25
+
26
+ Types of testing:
27
+
28
+ * Snapshot - projen project outputs are stored as a snapshot in the corresponding `__snapshots__` directory. When the project changes then it is expected that these snapshots change too and should be reviewed committed alongside the project.
29
+ * Unit tests - these assert on specific functionality of the project and should be written for any new functionality added.
30
+
13
31
  ## Creating a New Project
14
32
 
15
33
  ```
16
- npx projen new NpmPackage --from projen-project
34
+ npx projen new {project} --from projen-modules
17
35
  ```
36
+
37
+ Some projects may have required fields that need to be specified as part of this command, review any errors for details what needs to be specified.
38
+
39
+ ### Project Types
40
+
41
+ | Project type | Description |
42
+ | --------------------------------------- | ------------------------- |
43
+ | [npm-package](API.md#npmpackage-) | A typescript npm package |
44
+ | [python-package](API.md#pythonpackage-) | A python package |
45
+ | [jsii-package](API.md#jsiiproject-) | A typescript JSII package |
46
+
47
+ ## Project Structure
48
+
49
+ All source is located in `src` and is grouped by:
50
+
51
+ * `components` - these are common building blocks that can be used by projects to implement specific project functionality.
52
+ * `projects` - these are projects that can be built from this project (see #something)
53
+ * `utils` - these are helper functions that are often reused
54
+
55
+ `test` contains tests, and mirrors the `src` directory structure. Within here there are `__snapshots__` which contain snapshots of project tests (see #section).
18
56
  '''
19
57
  from pkgutil import extend_path
20
58
  __path__ = extend_path(__path__, __name__)
@@ -32,7 +32,7 @@ import constructs._jsii
32
32
  import projen._jsii
33
33
 
34
34
  __jsii_assembly__ = jsii.JSIIAssembly.load(
35
- "projen-modules", "0.1.4", __name__[0:-6], "projen-modules@0.1.4.jsii.tgz"
35
+ "projen-modules", "0.1.5", __name__[0:-6], "projen-modules@0.1.5.jsii.tgz"
36
36
  )
37
37
 
38
38
  __all__ = [
@@ -0,0 +1,82 @@
1
+ Metadata-Version: 2.1
2
+ Name: projen_modules
3
+ Version: 0.1.5
4
+ Summary: A collection of projen modules
5
+ Home-page: https://github.com/daveshepherd/projen-modules.git
6
+ Author: Dave Shepherd<dave.shepherd@endor.me.uk>
7
+ License: Apache-2.0
8
+ Project-URL: Source, https://github.com/daveshepherd/projen-modules.git
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Operating System :: OS Independent
11
+ Classifier: Programming Language :: JavaScript
12
+ Classifier: Programming Language :: Python :: 3 :: Only
13
+ Classifier: Programming Language :: Python :: 3.8
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Classifier: Typing :: Typed
18
+ Classifier: Development Status :: 5 - Production/Stable
19
+ Classifier: License :: OSI Approved
20
+ Requires-Python: ~=3.8
21
+ Description-Content-Type: text/markdown
22
+ License-File: LICENSE
23
+ Requires-Dist: constructs==10.4.2
24
+ Requires-Dist: jsii<2.0.0,>=1.104.0
25
+ Requires-Dist: projen==0.90.0
26
+ Requires-Dist: publication>=0.0.3
27
+ Requires-Dist: typeguard<4.3.0,>=2.13.3
28
+
29
+ # projen-modules
30
+
31
+ A collection of custom projen modules, that can be used to bootstrap and maintain consistent project configuration, tooling, dependencies, and builds.
32
+
33
+ ## Getting Started
34
+
35
+ ```sh
36
+ yarn install
37
+ npx projen build
38
+ ```
39
+
40
+ This will:
41
+
42
+ * Install the dependencies
43
+ * Apply any projen changes
44
+ * Run tests
45
+ * Package project locally
46
+
47
+ Any files changed by projen should be committed to git.
48
+
49
+ Running the tests like this will update any snapshot files, this should be reviewed and committed to git.
50
+
51
+ ## Testing
52
+
53
+ Types of testing:
54
+
55
+ * Snapshot - projen project outputs are stored as a snapshot in the corresponding `__snapshots__` directory. When the project changes then it is expected that these snapshots change too and should be reviewed committed alongside the project.
56
+ * Unit tests - these assert on specific functionality of the project and should be written for any new functionality added.
57
+
58
+ ## Creating a New Project
59
+
60
+ ```
61
+ npx projen new {project} --from projen-modules
62
+ ```
63
+
64
+ Some projects may have required fields that need to be specified as part of this command, review any errors for details what needs to be specified.
65
+
66
+ ### Project Types
67
+
68
+ | Project type | Description |
69
+ | --------------------------------------- | ------------------------- |
70
+ | [npm-package](API.md#npmpackage-) | A typescript npm package |
71
+ | [python-package](API.md#pythonpackage-) | A python package |
72
+ | [jsii-package](API.md#jsiiproject-) | A typescript JSII package |
73
+
74
+ ## Project Structure
75
+
76
+ All source is located in `src` and is grouped by:
77
+
78
+ * `components` - these are common building blocks that can be used by projects to implement specific project functionality.
79
+ * `projects` - these are projects that can be built from this project (see #something)
80
+ * `utils` - these are helper functions that are often reused
81
+
82
+ `test` contains tests, and mirrors the `src` directory structure. Within here there are `__snapshots__` which contain snapshots of project tests (see #section).
@@ -11,4 +11,4 @@ src/projen_modules.egg-info/dependency_links.txt
11
11
  src/projen_modules.egg-info/requires.txt
12
12
  src/projen_modules.egg-info/top_level.txt
13
13
  src/projen_modules/_jsii/__init__.py
14
- src/projen_modules/_jsii/projen-modules@0.1.4.jsii.tgz
14
+ src/projen_modules/_jsii/projen-modules@0.1.5.jsii.tgz
@@ -1,44 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: projen_modules
3
- Version: 0.1.4
4
- Summary: A collection of projen modules
5
- Home-page: https://github.com/daveshepherd/projen-modules.git
6
- Author: Dave Shepherd<dave.shepherd@endor.me.uk>
7
- License: Apache-2.0
8
- Project-URL: Source, https://github.com/daveshepherd/projen-modules.git
9
- Classifier: Intended Audience :: Developers
10
- Classifier: Operating System :: OS Independent
11
- Classifier: Programming Language :: JavaScript
12
- Classifier: Programming Language :: Python :: 3 :: Only
13
- Classifier: Programming Language :: Python :: 3.8
14
- Classifier: Programming Language :: Python :: 3.9
15
- Classifier: Programming Language :: Python :: 3.10
16
- Classifier: Programming Language :: Python :: 3.11
17
- Classifier: Typing :: Typed
18
- Classifier: Development Status :: 5 - Production/Stable
19
- Classifier: License :: OSI Approved
20
- Requires-Python: ~=3.8
21
- Description-Content-Type: text/markdown
22
- License-File: LICENSE
23
- Requires-Dist: constructs==10.4.2
24
- Requires-Dist: jsii<2.0.0,>=1.104.0
25
- Requires-Dist: projen==0.90.0
26
- Requires-Dist: publication>=0.0.3
27
- Requires-Dist: typeguard<4.3.0,>=2.13.3
28
-
29
- # projen-modules
30
-
31
- A collection of custom projen modules, that can be used to bootstrap and maintain consistent project configuration, tooling, dependencies, and builds.
32
-
33
- ## Getting Started
34
-
35
- ```sh
36
- yarn install
37
- npx projen build
38
- ```
39
-
40
- ## Creating a New Project
41
-
42
- ```
43
- npx projen new NpmPackage --from projen-project
44
- ```
@@ -1,16 +0,0 @@
1
- # projen-modules
2
-
3
- A collection of custom projen modules, that can be used to bootstrap and maintain consistent project configuration, tooling, dependencies, and builds.
4
-
5
- ## Getting Started
6
-
7
- ```sh
8
- yarn install
9
- npx projen build
10
- ```
11
-
12
- ## Creating a New Project
13
-
14
- ```
15
- npx projen new NpmPackage --from projen-project
16
- ```
@@ -1,44 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: projen_modules
3
- Version: 0.1.4
4
- Summary: A collection of projen modules
5
- Home-page: https://github.com/daveshepherd/projen-modules.git
6
- Author: Dave Shepherd<dave.shepherd@endor.me.uk>
7
- License: Apache-2.0
8
- Project-URL: Source, https://github.com/daveshepherd/projen-modules.git
9
- Classifier: Intended Audience :: Developers
10
- Classifier: Operating System :: OS Independent
11
- Classifier: Programming Language :: JavaScript
12
- Classifier: Programming Language :: Python :: 3 :: Only
13
- Classifier: Programming Language :: Python :: 3.8
14
- Classifier: Programming Language :: Python :: 3.9
15
- Classifier: Programming Language :: Python :: 3.10
16
- Classifier: Programming Language :: Python :: 3.11
17
- Classifier: Typing :: Typed
18
- Classifier: Development Status :: 5 - Production/Stable
19
- Classifier: License :: OSI Approved
20
- Requires-Python: ~=3.8
21
- Description-Content-Type: text/markdown
22
- License-File: LICENSE
23
- Requires-Dist: constructs==10.4.2
24
- Requires-Dist: jsii<2.0.0,>=1.104.0
25
- Requires-Dist: projen==0.90.0
26
- Requires-Dist: publication>=0.0.3
27
- Requires-Dist: typeguard<4.3.0,>=2.13.3
28
-
29
- # projen-modules
30
-
31
- A collection of custom projen modules, that can be used to bootstrap and maintain consistent project configuration, tooling, dependencies, and builds.
32
-
33
- ## Getting Started
34
-
35
- ```sh
36
- yarn install
37
- npx projen build
38
- ```
39
-
40
- ## Creating a New Project
41
-
42
- ```
43
- npx projen new NpmPackage --from projen-project
44
- ```
File without changes
File without changes