Browse Source

The `namespace` field is now required

default_compile_flags
vector-of-bool 4 years ago
parent
commit
8e7e83fedb
9 changed files with 10 additions and 1 deletions
  1. +1
    -0
      package.json5
  2. +1
    -0
      tests/basics/test_basics.py
  3. +1
    -0
      tests/deps/git-remote/package.json5
  4. +2
    -1
      tests/deps/no-deps/package.json5
  5. +1
    -0
      tests/deps/use-remote/package.json5
  6. +1
    -0
      tests/deps/use-spdlog/project/package.json5
  7. +1
    -0
      tests/sdist/create/package.json5
  8. +1
    -0
      tests/test_drivers/catch/custom-runner/package.json5
  9. +1
    -0
      tests/test_drivers/catch/main/package.json5

+ 1
- 0
package.json5 View File

{ {
"$schema": "what", "$schema": "what",
name: 'dds', name: 'dds',
namespace: 'dds',
version: '0.1.0', version: '0.1.0',
depends: { depends: {
spdlog: '1.4.2', spdlog: '1.4.2',

+ 1
- 0
tests/basics/test_basics.py View File

{ {
name: 'test-pkg', name: 'test-pkg',
version: '0.2.2', version: '0.2.2',
namespace: 'test',
} }
''') ''')



+ 1
- 0
tests/deps/git-remote/package.json5 View File

{ {
name: 'deps-test', name: 'deps-test',
"namespace": "test",
version: '0.0.0', version: '0.0.0',
depends: { depends: {
'neo-buffer': '0.1.0', 'neo-buffer': '0.1.0',

+ 2
- 1
tests/deps/no-deps/package.json5 View File

{ {
name: 'deps-test', name: 'deps-test',
version: '0.0.0'
version: '0.0.0',
"namespace": "test",
} }

+ 1
- 0
tests/deps/use-remote/package.json5 View File

{ {
"name": "json-test", "name": "json-test",
"version": "0.0.0", "version": "0.0.0",
"namespace": "test",
"depends": { "depends": {
"nlohmann-json": "3.7.1" "nlohmann-json": "3.7.1"
} }

+ 1
- 0
tests/deps/use-spdlog/project/package.json5 View File

{ {
name: 'test', name: 'test',
version: '0.0.0', version: '0.0.0',
"namespace": "test",
depends: { depends: {
'spdlog': '1.4.2', 'spdlog': '1.4.2',
}, },

+ 1
- 0
tests/sdist/create/package.json5 View File

{ {
name: 'foo', name: 'foo',
version: '1.2.3', version: '1.2.3',
"namespace": "test",
} }

+ 1
- 0
tests/test_drivers/catch/custom-runner/package.json5 View File

{ {
"name": "test", "name": "test",
"version": "0.0.0", "version": "0.0.0",
"namespace": "test",
"test_driver": "Catch", "test_driver": "Catch",
} }

+ 1
- 0
tests/test_drivers/catch/main/package.json5 View File

{ {
"name": "test", "name": "test",
"version": "0.0.0", "version": "0.0.0",
"namespace": "test",
"test_driver": "Catch-Main", "test_driver": "Catch-Main",
} }

Loading…
Cancel
Save